You will find only what you bring in.
[redakcja.git] / src / redakcja / templates / registration / head_login.html
1 {% load i18n %}
2
3 {% if user.is_authenticated %}
4   <div class="nav-item dropdown">
5     <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
6       {{ user.username }}
7     </a>
8     <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
9       {% if user.is_staff %}
10         <a target="_blank" class="dropdown-item" href="{% url 'admin:index' %}">{% trans "Admin" %}</a>
11       {% endif %}
12       <a class="dropdown-item" href='{% url "logout" %}{% if logout_to %}?next={{ logout_to }}{% endif %}'>{% trans "Log Out" %}</a>
13     </div>
14   </div>
15 {% else %}
16   {% url "cas_ng_login" as login_url %}
17   {% if login_url != request.path %}
18     <a class="nav-item nav-link" href='{{ login_url }}'>{% trans "Log In" %}</a>
19   {% endif %}
20 {% endif %}