forked from DGNum/gestioCOF
20 lines
575 B
HTML
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 %}
|