forked from DGNum/gestioCOF
15 lines
394 B
HTML
15 lines
394 B
HTML
|
{% extends "base_title.html" %}
|
||
|
|
||
|
{% block realcontent %}
|
||
|
<h2>Places disponibles immédiatement</h2>
|
||
|
{% if shotgun %}
|
||
|
<ul class="list-unstyled">
|
||
|
{% for spectacle in shotgun %}
|
||
|
<li><a href="{% url "bda-buy-revente" spectacle.id %}">{{spectacle}}</a></li>
|
||
|
{% endfor %}
|
||
|
{% else %}
|
||
|
<p> Pas de places disponibles immédiatement, désolé !</p>
|
||
|
{% endif %}
|
||
|
|
||
|
{% endblock %}
|