forked from DGNum/gestioCOF
17 lines
700 B
HTML
17 lines
700 B
HTML
|
{% extends "base_title.html" %}
|
||
|
|
||
|
{% block realcontent %}
|
||
|
<h2>Sondage: {{ survey.title }}</h2>
|
||
|
{% if success %}
|
||
|
<p class="success">Votre réponse a bien été enregistrée ! Vous pouvez cependant la modifier jusqu'à la fin du sondage.</p>
|
||
|
{% endif %}
|
||
|
{% if survey.details %}
|
||
|
<p>{{ survey.details }}</p>
|
||
|
{% endif %}
|
||
|
<form method="post" action="{% url gestioncof.views.survey survey.id %}">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<input type="submit" class="btn-submit" value="Enregistrer" />
|
||
|
</form>
|
||
|
{% endblock %}
|