Added simple views for the accounting cash report.
This commit is contained in:
11
accounting/templates/accounting/cash.html
Normal file
11
accounting/templates/accounting/cash.html
Normal 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 %}
|
Reference in New Issue
Block a user