blob: a6611233e1f50f4d07b52a68a155a85d4434564e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "wiki/article.html" %}
{% load wiki_tags %}
{% block wiki_pagetitle %}Source of "{{ article.current_revision.title }}"{% endblock %}
{% block wiki_contents_tab %}
{% if article.current_revision.locked %}
<p>This article is currently locked for editing.</p>
{% endif %}
<pre class="is-fullwidth">
{{ article.current_revision.content }}
</pre>
{% endblock %}
|