summaryrefslogtreecommitdiffstats
path: root/templates/wiki/page.html
blob: e0e6ddd9668fb25fafef175e8b458aaaec277b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}
{% load wikitags %}
{% block content %}
<div class="box">
	<h1 class="wiki">{{ page.title }}</h1>
	<div class="wikibody">
{{ page.content|wikify }}
	</div>

	<div class="wikifoot_r">
		<a href='{{ page.editurl }}'>Edit this page</a> | <a href='/wiki/'>Wiki Index</a>
	</div>
	<div class="wikifoot_l">
		Last Author: {{ page.last_author.username }}
	</div>
</div>
{% endblock %}