forked from DGNum/gestioCOF
22 lines
609 B
HTML
22 lines
609 B
HTML
<nav>
|
|
Standard
|
|
<ul>
|
|
<li><a href="{% url "kfet.home" %}">Home</a></li>
|
|
<li>
|
|
{% if request.user.profile.account_kfet %}
|
|
<a href="{% url "kfet.account.read" request.user.profile.account_kfet.trigramme %}">
|
|
Mes infos
|
|
</a>
|
|
{% endif %}
|
|
</li>
|
|
</ul>
|
|
Equipe
|
|
{% if perms.is_team %}
|
|
<ul>
|
|
<li><a href="{% url "kfet.account" %}">Comptes</a></li>
|
|
<li><a href="{% url "kfet.checkout" %}">Caisses</a></li>
|
|
<li><a href="{% url "kfet.article" %}">Articles</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
</nav>
|
|
|