Sith/election/templates/election/candidate_form.jinja
2016-12-25 19:54:10 +01:00

13 lines
299 B
Django/Jinja

{% extends "core/base.jinja" %}
{% block title %}
{% trans %}Candidate{% 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 %}