19 lines
431 B
HTML
19 lines
431 B
HTML
{% extends "base.html" %}
|
|
{% load i18n static string %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% for error in form.non_field_errors %}
|
|
<div class="notification is-danger">
|
|
{{ error }}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<h1 class="title">{% trans "Modification d'une question" %}</h1>
|
|
<hr>
|
|
|
|
{% url 'election.admin' question.election.pk as r_url %}
|
|
{% include "forms/common-form.html" with errors=False r_anchor="q_"|concatenate:question.pk %}
|
|
|
|
{% endblock %}
|