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.
authentic2-pratic/src/authentic2_pratic/templates/authentic2_pratic/agent_homepage.html

31 lines
751 B
HTML

{% extends "authentic2/homepage.html" %}
{% load i18n %}
{% block title %}
{% trans "Authentic" %}
{% endblock %}
{% block appbar %}
{{ block.super }}
<a href="{% url "account_management" %}">{% trans "Your account" %}</a>
{% endblock %}
{% block content %}
<h2 id="services-header">Services</h2>
<ul>
{% for name, url, slug, needed_authent in service_links %}
<li>
{% if needed_authent %}
<a id="service-link-{{ slug }}">
{{ name }}
</a> (niveau d'authentification insuffisant: {{ needed_authent }})
{% else %}
<a id="service-link-{{ slug }}" href="{{ url }}">
{{ name }}
</a>
{% endif %}
</li>
{% endfor %}
</ul>
{% endblock %}