haikal/templates/ledger_accounts/account_list.html
2024-12-25 17:28:03 +00:00

33 lines
966 B
HTML

{% extends 'base.html' %}
{% block content %}
<h1>Accounts</h1>
<a href="{% url 'account_create' %}" class="btn btn-primary">Create New Account</a>
<table class="table">
<thead>
<tr>
<th>Code</th>
<th>Name</th>
<th>Role</th>
<th>Balance Type</th>
<th>Active</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for account in accounts %}
<tr>
<td>{{ account.code }}</td>
<td>{{ account.name }}</td>
<td>{{ account.role }}</td>
<td>{{ account.balance_type }}</td>
<td>{{ account.active }}</td>
<td>
<a href="{% url 'account_update' account.pk %}" class="btn btn-warning">Edit</a>
<a href="{% url 'account_delete' account.pk %}" class="btn btn-danger">Delete</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}