Added simple views for the accounting cash report.

This commit is contained in:
2020-06-30 20:59:24 +08:00
parent cde10aed91
commit 06b8d470fb
5 changed files with 251 additions and 4 deletions

View File

@ -0,0 +1,11 @@
<h1>Cash Report</h1>
{% if records %}
<ul>
{% for record in records %}
<li>{{record.transaction.date}} {{record.summary}}</li>
{% endfor %}
</ul>
{% else %}
<p>No data.</p>
{% endif %}