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

Revente de place

{% with resell_attributions=resellform.attributions annul_attributions=annulform.attributions sold_attributions=soldform.attributions %} {% if resellform.attributions %}

Places non revendues

{% csrf_token %} {{resellform|bootstrap}}
{% endif %}
{% if annul_attributions or overdue %}

Places en cours de revente

{% csrf_token %}
    {% for attrib in annul_attributions %}
  • {{attrib.tag}} {{attrib.choice_label}}
  • {% endfor %} {% for attrib in overdue %}
  • {{attrib.spectacle}}
  • {% endfor %} {% if annul_attributions %} {% endif %} {% endif %}
    {% if sold_attributions %}

    Places revendues

    {% csrf_token %} {{soldform|bootstrap}}
    {% endif %} {% if not resell_attributions and not annul_attributions and not overdue and not sold_attributions %}

    Plus de reventes possibles !

    {% endif %} {% endwith %} {% endblock %}