gestioCOF/bda/templates/liste-reventes.html

20 lines
510 B
HTML
Raw Normal View History

2016-07-25 02:52:49 +02:00
{% extends "base_title.html" %}
{% load staticfiles %}
{% block realcontent %}
<h2>Inscriptions pour BDA-Revente</h2>
<form action="" method="post">
{% csrf_token %}
2016-07-27 13:08:00 +02:00
{{form}}
2016-07-25 02:52:49 +02:00
<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 %}