mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
14 lines
265 B
Django/Jinja
14 lines
265 B
Django/Jinja
{% extends "core/base.jinja" %}
|
|
{% from 'core/macros_pages.jinja' import page_history %}
|
|
|
|
{% block content %}
|
|
{% if club.page %}
|
|
{{ page_history(club.page) }}
|
|
{% else %}
|
|
{% trans %}No page existing for this club{% endtrans %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
|