blob: caae077efd3f2296354447b7cd49b88d6c10e622 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | {% extends "wiki/article.html" %}
{% load wiki_tags humanize %}
{% 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 %}
 |