evorepo/templates/news/add.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

27 lines
530 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="greybox">
{% if news %}
<h2 class="title">Edit News</h2>
{% else %}
<h2 class="title">Add News</h2>
{% endif %}
<form method="post" action=".">
<table>
<tr>
<td>Title:</td>
<td>{{ form.title }}</td>
</tr><tr>
<td style="vertical-align:top">Content:</td>
<td>{{ form.content }}</td>
</tr><tr>
<td colspan="2" align="right">
<input type="submit" value=" Save " />
</td>
</tr>
</table>
</form>
</div>
{% endblock %}