kpsul/bda/templates/liste-reventes.html
2016-09-03 18:47:38 +02:00

20 lines
575 B
HTML

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