Flatlogic Bot 4713dc6305 beta
2025-12-16 14:42:48 +00:00

26 lines
529 B
HTML

{% extends 'base.html' %}
{% block content %}
<h1>Chart of Accounts</h1>
<table>
<thead>
<tr>
<th>Number</th>
<th>Name</th>
<th>Type</th>
<th>Balance</th>
</tr>
</thead>
<tbody>
{% for account in accounts %}
<tr>
<td>{{ account.number }}</td>
<td>{{ account.name }}</td>
<td>{{ account.get_type_display }}</td>
<td>{{ account.balance }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}