Implement link group detail screen with profit simulation

This commit is contained in:
2023-03-18 14:06:50 +00:00
parent bbd25c7450
commit 8c490d6ee3
11 changed files with 292 additions and 21 deletions

View File

@@ -10,6 +10,7 @@
<th>created</th>
<th>institution</th>
<th>accounts</th>
<th>payees</th>
<th>actions</th>
</thead>
{% for item in object_list %}
@@ -26,6 +27,11 @@
<td>{{ item.created }}</td>
<td>{{ item.institution_id }}</td>
<td>{{ item.accounts|length }}</td>
<td>
{% for payee in item.requisition.payees.all %}
{{ payee.name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
</td>
<td>
<div class="buttons">
<button