Implement link group detail screen with profit simulation
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user