2018-09-27 03:34:33 -04:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
<img src="{{ url_for('static', filename='logo.png') }}" height="200px">
|
2018-10-21 14:51:07 -04:00
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
{% if not obj.no_canons %}
|
|
|
|
{% autoescape false %}
|
2018-09-27 03:34:33 -04:00
|
|
|
<p>
|
|
|
|
{% if obj.history %}
|
|
|
|
{{ obj.history }}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>canon</th>
|
|
|
|
<th>text</th>
|
|
|
|
</tr>
|
|
|
|
{% for canon in obj.canons %}
|
|
|
|
<tr>
|
|
|
|
<td style="text-align: center"><a href="#{{ canon.canon }}">{{ canon.canon }}</a></td>
|
|
|
|
<td id="{{ canon.canon }}">{{ canon.text }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</p>
|
2018-10-21 14:51:07 -04:00
|
|
|
{% endautoescape %}
|
|
|
|
{% else %}
|
|
|
|
<h3 style="text-align: center;">
|
|
|
|
This council has no canons.
|
|
|
|
</h3>
|
|
|
|
{% endif %}
|
2018-09-27 03:34:33 -04:00
|
|
|
{% endblock %}
|