mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-18 12:13:24 +00:00
19 lines
418 B
Django/Jinja
19 lines
418 B
Django/Jinja
{% extends "core/base.jinja" %}
|
|
{% from 'core/macros.jinja' import user_profile_link %}
|
|
|
|
{% block content %}
|
|
<div id="club_detail">
|
|
{% if club.logo %}
|
|
<div class="club_logo"><img src="{{ club.logo.url }}" alt="{{ club.unix_name }}"></div>
|
|
{% endif %}
|
|
{% if page_revision %}
|
|
{{ page_revision|markdown }}
|
|
{% else %}
|
|
<h3>{% trans %}Club{% endtrans %}</h3>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
|