villeneuve-dascq: remove dupplicated icon on toplinks (#53558)

This commit is contained in:
Nicolas Roche 2021-04-29 14:25:25 +02:00
parent f9d36f7a22
commit efcb24ace7
1 changed files with 21 additions and 2 deletions

View File

@ -4,5 +4,24 @@
<span class="theme-back-home">
<a href="{{portal_url}}" title="retour à laccueil">Accueil</a>
</span>
{{ block.super }}
{% endblock %}
<!-- manually replace {{ block.super }} that however produce a loop on django 1.11 -->
{% skeleton_extra_placeholder user-info %}
{% if user.is_authenticated %}
<span class="logged-in">
{% if idp_account_url %}<a class="account-link" href="{{idp_account_url}}">{% endif %}
<span class="connected-user">{% block user-info-user-name %}{{user.first_name}} {{user.last_name}}{% endblock %}</span>{% if idp_account_url %}</a>{% endif %}
<a accesskey="o" class="logout" href="{% url 'auth_logout' %}">{% block user-info-logout-label %}Déconnexion{% endblock %}</a>
</span>
{% else %}
{% firstof registration_url idp_registration_url as registration_url %}
<span class="login"><a accesskey="2" class="login-link" href="{% url 'auth_login' %}"
>{% block user-info-login-label %}Connexion{% endblock %}
{% if registration_url and include_registration_link != False %}</a>{% endif %}
<span class="sep">/</span>
{% if registration_url and include_registration_link != False %}<a class="registration" href="{{registration_url}}"
>{% block user-info-registration-label %}Inscription{% endblock %}{% endif %}</a></span>
{% endif %}
{% end_skeleton_extra_placeholder %}
{% endblock %}