Projet

Général

Profil

Télécharger (867 octets) Statistiques
| Branche: | Tag: | Révision:

mandayejs / mandayejs / mandaye / templates / mandaye / panel.html @ ea5cd294

1
{% load i18n %}
2
{% load gadjo staticfiles %}
3
{%for script in site_scripts%}
4
    <script type="text/javascript" src="{% static script %}"></script>
5
{%endfor%}
6

    
7
{% if user.is_authenticated %}
8
<div id="sso-username"><a href="{{ca_url}}">{{ user.get_full_name }}</a></div>
9
    {% if is_linked %}
10
        <div id="sso-mandaye-link"><a href="{% url 'dissociate' %}">{% trans 'dissociate'|capfirst %}</a></div>
11
    {% else %}
12
        <div id="sso-mandaye-link"><a href="{% url 'associate' %}">{% trans 'associate'|capfirst %}</a></div>
13
    {% endif %}
14
    <div id="sso-url"><a href="{% url 'mellon_logout' %}">{{ logout_txt|capfirst }}</a></div>
15
{% else %}
16
    <div id="sso-mandaye-link"><a href="{% url 'associate' %}">{% trans 'associate'|capfirst %}</a></div>
17
    <div id="sso-url"><a href="{% url 'mellon_login' %}">{{ login_txt|capfirst }}</a></div>
18
{% endif %}
19
</div>
(2-2/3)