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.
16 lines
807 B
16 lines
807 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>
|
|
{% if user.is_authenticated and user.is_staff %}
|
|
<a href="{% url 'admin:shop_order_dashboard' %}" class="download-button">Tableau de bord boutique</a>
|
|
<a href="{% url 'admin:prepare_all_orders' %}" class="download-button">Préparer commandes</a>
|
|
{% endif %}
|
|
</nav>
|
|
|