Homepage, transaction page and invoice

This commit is contained in:
Edgar P. Burkhart 2022-05-19 18:51:53 +02:00
parent a0f4e5ae54
commit 08868ce7c6
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
7 changed files with 50 additions and 4 deletions

View file

@ -0,0 +1,7 @@
{% if transactions %}
<ul>
{% for trans in transactions %}
<li><a href="transaction/{{ trans.id }}">{{ trans }}</a></li>
{% endfor %}
</ul>
{% endif %}

View file

@ -0,0 +1,6 @@
<h1>{{ transaction }}</h1>
<ul>
{% for inv in invoices %}
<li><a href="../invoice/{{ inv.id }}">{{ inv.name }}</a></li>
{% endfor %}
</ul>