remove separate account bar
This commit is contained in:
parent
fdd0fb467a
commit
2ac790edd9
1 changed files with 0 additions and 22 deletions
|
@ -1,22 +0,0 @@
|
|||
{% load i18n %}
|
||||
{% load account_tags %}
|
||||
|
||||
<ul class="nav navbar-nav pull-right">
|
||||
{% if request.user.is_authenticated %}
|
||||
<li>
|
||||
<a href="{% url "dashboard" %}"><i class="fa fa-tasks"></i> {% trans "Dashboard" %}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a id="account_logout" href="{% url 'account_logout' %}"><i class="fa fa-power-off"></i> {% trans "Log out" %}</a>
|
||||
</li>
|
||||
{% else %}
|
||||
<li><a href="{% url 'account_login' %}">{% trans "Log in" %}</a></li>
|
||||
{% if ACCOUNT_OPEN_SIGNUP %}
|
||||
<li><a href="{% url 'account_signup' %}">{% trans "Sign up" %}</a></li>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</ul>
|
||||
|
||||
<form id="accountLogOutForm" action="{% url 'account_logout' %}" method="POST">
|
||||
{% csrf_token %}
|
||||
</form>
|
Loading…
Reference in a new issue