You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
525 B
12 lines
525 B
<nav class="margin10">
|
|
<a href="{% url 'index' %}" class="orange">Accueil</a>
|
|
<a href="{% url 'clubs' %}" class="orange">Clubs</a>
|
|
{% if user.is_authenticated %}
|
|
<a href="{% url 'my-tournaments' %}" class="orange">Mes tournois</a>
|
|
<a href="{% url 'shop:my_orders' %}">Mes commandes</a>
|
|
<a href="{% url 'profile' %}">Mon compte</a>
|
|
{% else %}
|
|
<a href="{% url 'custom-login' %}">Se connecter</a>
|
|
{% endif %}
|
|
<a href="{% url 'shop:product_list' %}">La Boutique</a>
|
|
</nav>
|
|
|