Sith/election/templates/election/vote_form.jinja
2016-12-25 19:53:04 +01:00

13 lines
294 B
Django/Jinja

{% extends "core/base.jinja" %}
{% block title %}
{% trans %}Vote{% endtrans %}
{% endblock %}
{% block content %}
<form action="" method="post">
{% csrf_token %}
{{ form.as_p() }}
<p><input type="submit" value="{% trans %}Save{% endtrans %}" /></p>
</form>
{% endblock content %}