mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-10 00:03:24 +00:00
18 lines
476 B
Django/Jinja
18 lines
476 B
Django/Jinja
{% extends "core/page.jinja" %}
|
|
|
|
{% block page %}
|
|
{% if rev %}
|
|
<h4>{% trans rev_id=rev.revision %}This may not be the last update, you are seeing revision {{ rev_id }}!{% endtrans %}</h4>
|
|
<h3>{{ rev.title }}</h3>
|
|
<div class="page_content">{{ rev.content|markdown }}</div>
|
|
{% else %}
|
|
{% if page.revisions.last() %}
|
|
<h3>{{ page.revisions.last().title }}</h3>
|
|
<div class="page_content">{{ page.revisions.last().content|markdown }}</div>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
|
|
|