evorepo/templates/wiki/page.html
eliott 39a548fd26 Initial import for public release...
Special Note
  Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd!
2007-11-03 03:45:10 -04:00

18 lines
404 B
HTML

{% 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 %}