{% 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 %}

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 %}
{% endblock %}