mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-17 03:33:21 +00:00
37 lines
939 B
Django/Jinja
37 lines
939 B
Django/Jinja
{% extends "core/base.jinja" %}
|
|
|
|
{% block title %}
|
|
{% trans %}Club list{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% macro display_club(club) -%}
|
|
<li><a href="{{ url('club:club_view', club_id=club.id) }}">{{ club.name }}</a>
|
|
{%- if club.children.all()|length != 0 %}
|
|
<ul>
|
|
{%- for c in club.children.order_by('name') %}
|
|
{{ display_club(c) }}
|
|
{%- endfor %}
|
|
</ul>
|
|
{%- endif -%}
|
|
</li>
|
|
{%- endmacro %}
|
|
|
|
{% block content %}
|
|
{% if user.is_root %}
|
|
<p><a href="{{ url('club:club_new') }}">{% trans %}New club{% endtrans %}</a></p>
|
|
{% endif %}
|
|
{% if club_list %}
|
|
<h3>{% trans %}Club list{% endtrans %}</h3>
|
|
<ul>
|
|
{%- for c in club_list.order_by('name') if c.parent is none %}
|
|
{{ display_club(c) }}
|
|
{%- endfor %}
|
|
</ul>
|
|
{% else %}
|
|
{% trans %}There is no club in this website.{% endtrans %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
|