forked from DGNum/gestioCOF
49 lines
1.4 KiB
HTML
49 lines
1.4 KiB
HTML
{% load kfet_tags %}
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="{% url "kfet.account.create.empty" %}">
|
|
Créer un compte
|
|
</a>
|
|
</li>
|
|
{% if kfet %}
|
|
<li>Comptes existant</li>
|
|
{% for account, user in kfet %}
|
|
<li>{{ account }} [{{ user|highlight_user:q }}]</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if users_cof %}
|
|
<li>Membres du COF</li>
|
|
{% for user in users_cof %}
|
|
<li>
|
|
<a href="{% url "kfet.account.create.fromuser" user.username %}">
|
|
{{ user|highlight_user:q }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if users_notcof %}
|
|
<li>Non-membres du COF</li>
|
|
{% for user in users_notcof %}
|
|
<li>
|
|
<a href="{% url "kfet.account.create.fromuser" user.username %}">
|
|
{{ user|highlight_user:q }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if clippers %}
|
|
<li>Utilisateurs clipper</li>
|
|
{% for clipper in clippers %}
|
|
<li>
|
|
<a href="{% url "kfet.account.create.fromclipper" clipper.username %}">
|
|
{{ clipper|highlight_clipper:q }}
|
|
</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if not q %}
|
|
<li>Pas de recherche, pas de résultats !</li>
|
|
{% elif not options %}
|
|
<li>Aucune correspondance trouvée :-(</li>
|
|
{% endif %}
|
|
</ul>
|