aboutsummaryrefslogtreecommitdiffstats
path: root/tmpl/transactions_by_year.html
diff options
context:
space:
mode:
Diffstat (limited to 'tmpl/transactions_by_year.html')
-rw-r--r--tmpl/transactions_by_year.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/tmpl/transactions_by_year.html b/tmpl/transactions_by_year.html
new file mode 100644
index 0000000..5ee0095
--- /dev/null
+++ b/tmpl/transactions_by_year.html
@@ -0,0 +1,54 @@
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <title>[% config.sitename %]: Transactions for [% year %]</title>
+ </head>
+ <body>
+ <h1>Mageia.Org accounts transactions for year [% year %]</h1>
+ <h3>Summary</h3>
+ <ul>
+ <li>
+ <b>Start balance</b>: [% transactions.by_year.$year.start_balance %] Euros
+ </li>
+ <li>
+ <b>End balance</b>: [% transactions.by_year.$year.end_balance %] Euros
+ </li>
+ <li>
+ <b>Revenues</b>: [% transactions.by_year.$year.revenues %] Euros
+ </li>
+ <li>
+ <b>Expenses</b>: [% transactions.by_year.$year.expenses %] Euros
+ </li>
+ </ul>
+ <h3>By category</h3>
+ <ul>
+ [% FOR ca IN transactions.by_year.$year.ca_balance.keys %]
+ <li><b>[% transactions.by_ca.$ca.c_name %]</b>: [% transactions.by_year.$year.ca_balance.$ca %] Euros</b></li>
+ [%- END -%]
+ </ul>
+ <h3>Monthly reports</h3>
+ <ul>
+ [%- FOR month IN transactions.by_month.keys.sort -%]
+ [%- IF transactions.by_month.$month.year == year -%]
+ <li><a href="m_[% month %].html">[% month %]</a></li>
+
+ [%- END -%]
+ [%- END -%]
+ </ul>
+ <h3>Details</h3>
+ <table border="1">
+ <tr>
+ <th>Date</th>
+ <th>Amount</th>
+ <th>Account</th>
+ <th>Who</th>
+ <th>Notes</th>
+ <th>Category</th>
+ </tr>
+ [%- USE date(format='%Y/%m/%d') -%]
+ [% FOR tra IN transactions.by_year.$year.transactions.sort('date').reverse %]
+ [%- INCLUDE tra_row.html %]
+ [%- END -%]
+ </table>
+ </body>
+</html>