summaryrefslogtreecommitdiffstats
path: root/templates/news/add.html
blob: daa758714d550f9fb83d03b185d9142c5e63fe42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}

{% block content %}
	<div class="greybox">
	{% if form.instance.id %}
		<h2 class="title">Edit News</h2>
	{% else %}
		<h2 class="title">Add News</h2>
	{% endif %}
		<form method="post" id="newsform" action=".">
		<table>
            {{form}}
			<tr>
				<td colspan="2" align="right">
					<input type="submit" value=" Save " />
				</td>
			</tr>
		</table>
		</form>
	</div>
{% endblock %}