{% extends "base_title.html" %} {% load bootstrap %} {% block realcontent %}

Revente de place

Places non revendues

{% csrf_token %}
    {% for box in resellform.attributions %}
  • {{box.tag}} {{box.choice_label}}
  • {% endfor %}

{% if annulform.attributions or overdue %}

Places en cours de revente

{% csrf_token %}
    {% for box in annulform.attributions %}
  • {{box.tag}} {{box.choice_label}}
  • {% endfor %} {% for attrib in overdue %}
  • {{attrib.spectacle}}
  • {% endfor %}
{% if annulform.attributions %} {% endif %}
{% endif %}
{% if sold %}

Places revendues

{% for attrib in sold %} {% csrf_token %} {% endfor %}
{{attrib.spectacle}} {{attrib.revente.soldTo.user.get_full_name}}
{% endif %} {% endblock %}