This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
fontenay-sous-bois/portail-citoyen/templates/blurps/liste-des-teleservices.html

21 lines
434 B
HTML

{% load i18n %}
{% if user.is_authenticated %}
{% regroup teleservices by category as category_list %}
{% else %}
{% regroup teleservices_publics by category as category_list %}
{% endif %}
<ul>
{% for category in category_list %}
<li><h1>{{ category.grouper }}</h1>
<ul>
{% for teleservice in category.list %}
<li><a href="{{ teleservice.url }}tryauth">{{ teleservice.title }}</a></li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>