Changed color alternation on pkglist to be conformant.
[archweb_dev-nj.git] / templates / wiki / edit.html
blob421a313f4560667a129773c59c5c4042b2a17355
1 {% extends "base.html" %}
2 {% block content %}
3 <div class="greybox">
4 <div style="float:right;font-size:x-small">
5 <a href="http://daringfireball.net/projects/markdown/syntax/">Wiki Syntax</a>
6 </div>
7 <h2 class="title">Editing: {{ page.title }}</h2>
8 <form action="." method="post">
9 <input name="title" value="{{ page.title }}" />
10 <br /><br />
11 <textarea name="content" cols="100" rows="32">{{ page.content }}</textarea>
12 <br /><br />
13 <input type="submit" value="Save" />
14 </form>
15 <!--
16 <form action="/wiki/delete/" method="post">
17 <input type="hidden" name="title" value="{{ page.title }}" />
18 <input type="submit" value="Delete" />
19 </form>
20 -->
21 </div>
22 {% endblock %}