I forgot the template to nominate.

See #913
 - Legacy-Id: 5119
This commit is contained in:
Emilio Jiménez 2012-12-11 15:56:57 +00:00
parent d9df44e2b1
commit 43516e5542

View file

@ -0,0 +1,21 @@
{% extends "base.html" %}
{% block title %}Nominate{% endblock %}
{% block content %}
<h1>Nominate</h1>
{% if message %}
<div class="info-message-{{ message.0 }}">{{ message.1 }}</div>
{% endif %}
{% if form.errors %}<div class="info-message-error">Please correct the following errors</div>{% endif %}
<form action="" method="post">{% csrf_token %}
<table>
{{ form }}
</table>
<p><input type="submit" value="Save" /></p>
</form>
{% endblock %}