Browse Source

Premières icônes

pull/4/head
Yoann Piétri 7 years ago
parent
commit
4068c5212a
  1. 23
      templates/nav.html

23
templates/nav.html

@ -1,48 +1,49 @@
{% if request.user.is_authenticated %} {% if request.user.is_authenticated %}
<span class="tabulation2"> <span class="tabulation2">
<a href="{% url 'users:profile' request.user.pk %}">Mon profil</a> <i class="fa fa-user"></i> <a href="{% url 'users:profile' request.user.pk %}">Mon profil</a>
</span> </span>
{% if perms.gestion.add_consumptionhistory or perms.gestion.add_refund or perms.gestion.add_reload %} {% if perms.gestion.add_consumptionhistory or perms.gestion.add_refund or perms.gestion.add_reload %}
<span class="tabulation2"> <span class="tabulation2">
<a href="{% url 'gestion:manage' %}">Transactions</a> <i class="fa fa-cash-register"></i> <a href="{% url 'gestion:manage' %}">Transactions</a>
</span> </span>
{% endif %} {% endif %}
{% if perms.auth.add_user or perms.auth.view_user or perms.auth.add_group or perms.auth.view_group or perms.users.add_school or perms.users.view_school %} {% if perms.auth.add_user or perms.auth.view_user or perms.auth.add_group or perms.auth.view_group or perms.users.add_school or perms.users.view_school %}
<span class="tabulation2"> <span class="tabulation2">
<a href="{% url 'users:index' %}">Gestion des clients</a> <i class="fa fa-users"></i> <a href="{% url 'users:index' %}">Gestion des clients</a>
</span> </span>
{% endif %} {% endif %}
{% if perms.gestion.view_product or perms.gestion.add_product or perms.gestion.add_keg or perms.gestion.view_keg or perms.gestion.change_keg or perms.gestion.view_menu or perms.gestion.add_menu %} {% if perms.gestion.view_product or perms.gestion.add_product or perms.gestion.add_keg or perms.gestion.view_keg or perms.gestion.change_keg or perms.gestion.view_menu or perms.gestion.add_menu %}
<span class="tabulation2"> <span class="tabulation2">
<a href="{% url 'gestion:productsIndex' %}">Gestion des produits</a> <i class="fa fa-dolly-flatbed"></i> <a href="{% url 'gestion:productsIndex' %}">Gestion des produits</a>
</span> </span>
{% endif %} {% endif %}
<span class="tabulation2"> <span class="tabulation2">
<a href="{% url 'gestion:ranking' %}">Classement</a> <i class="fa fa-list-ol"></i> <a href="{% url 'gestion:ranking' %}">Classement</a>
</span> </span>
{% if perms.preferences.change_generalpreferences %} {% if perms.preferences.change_generalpreferences %}
<span class="tabulation2"> <span class="tabulation2">
<a href="{% url 'preferences:generalPreferences' %}">Admin</a> <br>
<i class="fa fa-tools"></i> <a href="{% url 'preferences:generalPreferences' %}">Admin</a>
</span> </span>
{% endif %} {% endif %}
{% if request.user.is_staff %} {% if request.user.is_staff %}
<span class="tabulation2"> <span class="tabulation2">
<a href="{% url 'gestion:gen_releve' %}">Comptabilité</a> <i class="fa fa-business-time"></i> <a href="{% url 'gestion:gen_releve' %}">Comptabilité</a>
</span> </span>
{% endif %} {% endif %}
{% if perms.preferences.view_cotisation %} {% if perms.preferences.view_cotisation %}
<span class="tabulation2"> <span class="tabulation2">
<a href="{% url 'preferences:cotisationsIndex' %}">Cotisations</a> <i class="fa fa-calendar-check"></i> <a href="{% url 'preferences:cotisationsIndex' %}">Cotisations</a>
</span> </span>
{% endif %} {% endif %}
{% if perms.preferences.view_cotisation %} {% if perms.preferences.view_cotisation %}
<span class="tabulation2"> <span class="tabulation2">
<a href="{% url 'preferences:paymentMethodsIndex' %}">Moyens de paiement</a> <i class="fa fa-comments-dollar"></i> <a href="{% url 'preferences:paymentMethodsIndex' %}">Moyens de paiement</a>
</span> </span>
{% endif %} {% endif %}
<span class="tabulation2"> <span class="tabulation2">
<a href="{% url 'users:logout' %}">Deconnexion</a> <i class="fa fa-bed"></i> <a href="{% url 'users:logout' %}">Deconnexion</a>
</span> </span>
{% else %} {% else %}
<a href="{% url 'users:login' %}">Connexion</a> <i class="fa fa-sign-in"></i> <a href="{% url 'users:login' %}">Connexion</a>
{% endif %} {% endif %}

Loading…
Cancel
Save