aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/wiki/source.html
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-05-14 17:46:00 +0100
committerGravatar GitHub <[email protected]>2021-05-14 17:46:00 +0100
commit2836913d98e762d819d6d50ec668112077e8a3a9 (patch)
treeccb02577b40ad4c92b56c8c6d3ae1c53e90afe26 /pydis_site/templates/wiki/source.html
parentMerge pull request #486 from python-discord/bast0006-patch-error-page-margins (diff)
parentRemove stale dependency. (diff)
Merge pull request #487 from python-discord/dewikification
Diffstat (limited to 'pydis_site/templates/wiki/source.html')
-rw-r--r--pydis_site/templates/wiki/source.html14
1 files changed, 0 insertions, 14 deletions
diff --git a/pydis_site/templates/wiki/source.html b/pydis_site/templates/wiki/source.html
deleted file mode 100644
index a6611233..00000000
--- a/pydis_site/templates/wiki/source.html
+++ /dev/null
@@ -1,14 +0,0 @@
-{% 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 %}