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

15 lines
411 B
HTML

{% load i18n %}
<ul>
{% if user.is_authenticated %}
{% for service in teleservices %}
<li><strong><a href="{{ service.url }}tryauth" title="{{ service.title }}">{{ service.title }}</a></strong></li>
{% endfor %}
{% else %}
{% for service in teleservices_publics %}
<li><strong><a href="{{ service.url }}tryauth" title="{{ service.title }}">{{ service.title }}</a></strong></li>
{% endfor %}
{% endif %}
</ul>