kpsul/templates/gestioncof/survey.html
Guillaume Seguin 8e1bf7b705 Initial import
2012-06-27 23:28:35 +02:00

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 %}