kpsul/kfet/templates/kfet/account.html
2016-08-03 04:57:28 +02:00

17 lines
298 B
HTML

{% extends "kfet/base.html" %}
{% block title %}Liste des comptes{% endblock %}
{% block content %}
<ul>
{% for account in accounts %}
<li>
<a href="{% url 'kfet.account.read' account.trigramme %}">
{{ account }}
</a>
</li>
{% endfor %}
</ul>
{% endblock %}