forked from DGNum/gestioCOF
23 lines
1 KiB
HTML
23 lines
1 KiB
HTML
{% extends "base_title.html" %}
|
|
|
|
{% block realcontent %}
|
|
<h2>Sondage: {{ survey.title }}</h2>
|
|
{% if success %}
|
|
{% if deleted %}
|
|
<p class="success">Votre réponse a bien été supprimée !</p>
|
|
{% else %}
|
|
<p class="success">Votre réponse a bien été enregistrée ! Vous pouvez cependant la modifier jusqu'à la fin du sondage.</p>
|
|
{% endif %}
|
|
{% 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" />
|
|
{% if current_answer %}
|
|
<input type="submit" name="delete" class="btn-submit" value="Supprimer ma réponse" />
|
|
{% endif %}
|
|
</form>
|
|
{% endblock %}
|