kpsul/gestioncof/templates/liste_clubs.html

26 lines
638 B
HTML
Raw Permalink Normal View History

2016-08-23 20:10:25 +02:00
{% extends "base_title.html" %}
{% block page_size %}col-sm-8{% endblock %}
{% block realcontent %}
<h2>Clubs enregistrés sur GestioCOF</h2>
<ul>
{% for club in owned_clubs %}
<li>
<a href="{% url "membres-club" club.name %}">
{{ club }} ({% for respo in club.respos.all %}{{ respo.get_full_name }}, {% empty %}pas de respo{% endfor %})
2016-08-23 20:10:25 +02:00
</a>
</li>
{% endfor %}
{% if other_clubs %}
{% for club in other_clubs %}
<li>
<p>
{{ club }} ({% for respo in club.respos.all %}{{ respo.get_full_name }}, {% empty %}pas de respo{% endfor %})
2016-08-23 20:10:25 +02:00
</p>
</li>
{% endfor %}
{% endif %}
</ul>
{% endblock %}