login, logout and profile buttons now depend on the user authentification
This commit is contained in:
parent
19427d3e34
commit
e9b67b11d8
1 changed files with 6 additions and 3 deletions
|
@ -10,8 +10,11 @@
|
|||
|
||||
<div id="navigation-buttons">
|
||||
<a href="{% url "Palto:homepage" %}">Home</a>
|
||||
<a href="{% url "Palto:my_profile" %}">Profile</a>
|
||||
<a href="{% url "Palto:login" %}">Login</a>
|
||||
<a href="{% url "Palto:logout" %}">Logout</a>
|
||||
{% if request.user.is_authenticated %}
|
||||
<a href="{% url "Palto:my_profile" %}">Profile</a>
|
||||
<a href="{% url "Palto:logout" %}">Logout</a>
|
||||
{% else %}
|
||||
<a href="{% url "Palto:login" %}">Login</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
</nav>
|
||||
|
|
Loading…
Reference in a new issue