Skip to content

Commit

Permalink
Fix logout link
Browse files Browse the repository at this point in the history
  • Loading branch information
timonegk committed Feb 5, 2024
1 parent 679eb28 commit 1f57482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion karma/base/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
{% if request.user.is_anonymous %}
<a href="{% url 'login' %}"><i class="btn btn-primary">Login</i></a>
{% else %}
<a href=""><i class="fa fa-user"></i><span>{{ request.user.get_username }}</span></a> (<a href="/logout">Logout</a>)
<a href=""><i class="fa fa-user"></i><span>{{ request.user.get_username }}</span></a> (<a href="{% url 'simple_openid_connect:logout' %}">Logout</a>)
{% endif %}
</div></div>
</nav>
Expand Down

0 comments on commit 1f57482

Please sign in to comment.