2012-07-11 17:39:20 +02:00
|
|
|
{% extends "base_title.html" %}
|
|
|
|
|
|
|
|
{% block realcontent %}
|
|
|
|
<h2>Événement: {{ event.title }}</h2>
|
|
|
|
{% if success %}
|
|
|
|
<p class="success">Votre inscription a bien été enregistrée ! Vous pouvez cependant la modifier jusqu'à la fin des inscriptions.</p>
|
|
|
|
{% endif %}
|
|
|
|
{% if event.details %}
|
|
|
|
<p>{{ event.details }}</p>
|
|
|
|
{% endif %}
|
2013-09-05 22:22:47 +02:00
|
|
|
<form method="post" action="{% url 'gestioncof.views.event' event.id %}">
|
2012-07-11 17:39:20 +02:00
|
|
|
{% csrf_token %}
|
|
|
|
{{ form.as_p }}
|
|
|
|
<input type="submit" class="btn-submit" value="Enregistrer" />
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|