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