2011-07-31 10:46:29 +02:00
|
|
|
{% extends "assignment/base_assignment.html" %}
|
2012-02-09 16:57:10 +01:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
2011-07-31 10:46:29 +02:00
|
|
|
{% block title %}{{ block.super }} - {%trans "Election" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% if assignment %}
|
|
|
|
<h1>{%trans "Edit election" %}</h1>
|
|
|
|
{% else %}
|
|
|
|
<h1>{%trans "New election" %}</h1>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<form action="" method="post">{% csrf_token %}
|
|
|
|
{{ form.as_p }}
|
2012-04-26 17:50:46 +02:00
|
|
|
<p>
|
2011-11-14 19:33:45 +01:00
|
|
|
<button class="button" type="submit">
|
2011-07-31 10:46:29 +02:00
|
|
|
<span class="icon ok">{%trans 'Save' %}</span>
|
|
|
|
</button>
|
2011-11-14 19:33:45 +01:00
|
|
|
<button class="button" type="submit" name="apply">
|
2011-09-03 16:20:10 +02:00
|
|
|
<span class="icon apply">{%trans 'Apply' %}</span>
|
|
|
|
</button>
|
2011-07-31 10:46:29 +02:00
|
|
|
<a href='{% url assignment_overview %}'>
|
2011-11-14 19:33:45 +01:00
|
|
|
<button class="button" type="button" onclick="window.location='{% url assignment_overview %}'">
|
2011-07-31 10:46:29 +02:00
|
|
|
<span class="icon cancel">{%trans 'Cancel' %}</span>
|
2011-11-14 19:33:45 +01:00
|
|
|
</button>
|
2011-07-31 10:46:29 +02:00
|
|
|
</a>
|
2012-04-26 17:50:46 +02:00
|
|
|
</p>
|
|
|
|
<small>* {% trans "required." %}</small>
|
2011-07-31 10:46:29 +02:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|