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

Revente de place

{% if resellform.attributions %}

Places non revendues

{% csrf_token %} {{resellform|bootstrap}}
{% endif %}
{% if annulform.attributions or overdue %}

Places en cours de revente

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

    Places revendues

    {% csrf_token %} {{soldform|bootstrap}}
    {% endif %} {% if not resellform.attributions and not soldform.attributions and not overdue and not annulform.attributions %}

    Plus de reventes possibles !

    {% endif %} {% endblock %}