forked from DGNum/gestiojeux
16 lines
631 B
HTML
16 lines
631 B
HTML
<header>
|
|
<h1>
|
|
<a href="{% url "mainsite:home" %}">
|
|
GestioJeux
|
|
</a>
|
|
</h1>
|
|
{% with url_name=request.resolver_match.url_name %}
|
|
<nav>
|
|
<a {% if url_name == "home" %}class="current"{% endif %} href="{% url "mainsite:home" %}"><i class="fa fa-home" aria-hidden="true"></i></a>
|
|
<a {% if url_name == "inventory" %}class="current"{% endif %} href="{% url "inventory:inventory" %}">Inventaire</a>
|
|
<a {% if url_name == "suggestions" %}class="current"{% endif %} href="">Suggestions</a>
|
|
</nav>
|
|
<a class="login" href="">Connexion</a>
|
|
{# <a class="login" href="">Logout</a> #}
|
|
{% endwith %}
|
|
</header>
|