diff --git a/src/backoffice/templates/chain_list_backoffice.html b/src/backoffice/templates/chain_list_backoffice.html index 8381ecab..0a0ab3a9 100644 --- a/src/backoffice/templates/chain_list_backoffice.html +++ b/src/backoffice/templates/chain_list_backoffice.html @@ -10,26 +10,36 @@ Select Chain | {{ block.super }}

Back to Backoffice Index

{% if chain_list %} -
-
-

Chains

-
-
-
+ + + + + + + + + + + + + + {% for chain in chain_list %} - -

- {{ chain.name }} ({{ chain.credebtors.count }} credebtors) -

-

{{ chain.name }} has {{ chain.expenses.count }} expenses for a total of {{ chain.expenses_total|default:"0" }} DKK, and {{ chain.revenues.count }} revenues for a total of {{ chain.revenues_total|default:"0" }} DKK

- {% if chain.notes %} -

Notes: {{ chain.notes }}

- {% endif %} -
+ + + + + + + + + + {% endfor %} - - - + +
Chain NameNotesCredebtorsExpensesExpenses TotalRevenuesRevenues TotalActions
{{ chain.name }}{{ chain.notes|default:"N/A" }}{{ chain.credebtors.count }}{{ chain.expenses.count }}{{ chain.expenses_total }}{{ chain.revenues.count }}{{ chain.revenues_total }} + Details +
{% else %}

No Chains found.

{% endif %}