2024-02-19 23:51:18 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block title %}Index{% endblock title %}
|
|
|
|
|
{% block body %}
|
2024-03-18 23:04:48 +01:00
|
|
|
<div><h2 class="text-lg">Accounts</h2></div>
|
|
|
|
|
<div>
|
|
|
|
|
{% for account in accounts %}
|
|
|
|
|
<a class="p-2 hover:bg-stone-200" href="/accounts/id/{{account.account_id}}">{{account.account_name}}</a>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
2024-02-19 23:51:18 +01:00
|
|
|
{% endblock body %}
|