kpsul/bda/templates/liste-reventes.html
Ludovic Stephan 460a135fa5 use forms
2016-07-27 13:08:00 +02:00

19 lines
510 B
HTML

{% extends "base_title.html" %}
{% load staticfiles %}
{% block realcontent %}
<h2>Inscriptions pour BDA-Revente</h2>
<form action="" method="post">
{% csrf_token %}
{{form}}
<input type="submit" value="S'inscrire pour les places sélectionnées">
</form>
{% if shotgun %}
<h2>Places disponibles immédiatement</h2>
<ul>
{% for spectacle in shotgun %}
<li><a href="{% url "bda-buy-revente" spectacle.id %}">{{spectacle}}</a></li>
{% endfor %}
{% endif %}
{% endblock %}