28 lines
683 B
HTML
28 lines
683 B
HTML
{% include 'mixins/partials/notify.html' %}
|
|
|
|
<h1 class="title">{{ title_singular }} info</h1>
|
|
{% for key, item in object.items %}
|
|
<h1 class="title is-4">Bank: {{ key }}</h1>
|
|
{% for account in item %}
|
|
<table class="table is-fullwidth is-hoverable box">
|
|
<thead>
|
|
<th>attribute</th>
|
|
<th>value</th>
|
|
</thead>
|
|
<tbody>
|
|
{% for key_i, item_i in account.items %}
|
|
<tr>
|
|
<th>{{ key_i }}</th>
|
|
<td>
|
|
{% if item_i is not None %}
|
|
{{ item_i }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endfor %}
|
|
<hr/>
|
|
{% endfor %} |