accounters/templates/index.html
2024-02-19 23:51:18 +01:00

7 lines
250 B
HTML

{% extends "base.html" %}
{% block title %}Index{% endblock title %}
{% block body %}
{% for account in accounts %}
<a href="/accounts/id/{{account.account_id}}">{{account.account_name}}({{account.account_id}})</a>
{% endfor %}
{% endblock body %}