2016-09-04 17:24:53 +00:00
|
|
|
{% extends "core/base.jinja" %}
|
2016-08-31 15:18:21 +00:00
|
|
|
{% from 'core/macros.jinja' import user_profile_link %}
|
2016-02-02 15:34:36 +00:00
|
|
|
|
2016-09-04 17:24:53 +00:00
|
|
|
{% block content %}
|
2017-09-26 14:07:49 +00:00
|
|
|
<div id="club_detail">
|
|
|
|
{% if club.logo %}
|
|
|
|
<div class="club_logo"><img src="{{ club.logo.url }}" alt="{{ club.unix_name }}"></div>
|
|
|
|
{% endif %}
|
2017-10-01 18:52:29 +00:00
|
|
|
{% if page_revision %}
|
|
|
|
{{ page_revision|markdown }}
|
|
|
|
{% else %}
|
|
|
|
<h3>{% trans %}Club{% endtrans %}</h3>
|
2017-09-26 14:07:49 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2016-02-02 15:34:36 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|