Implement viewing transactions for an account

This commit is contained in:
2023-03-09 20:24:46 +00:00
parent cfb7cec88f
commit ac483711c4
10 changed files with 396 additions and 3 deletions

View File

@@ -21,6 +21,7 @@
<th>details</th>
<th>payment</th>
<th>id</th>
<th>actions</th>
</thead>
{% for account in accounts %}
@@ -42,6 +43,17 @@
</span>
</a>
</td>
<td>
<a href="{% url 'transactions' type='page' account_id=account.account_id aggregator_id=account.aggregator_id %}"><button
class="button">
<span class="icon-text">
<span class="icon">
<i class="fa-solid fa-table-list"></i>
</span>
</span>
</button>
</a>
</td>
</tr>
{% endfor %}