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

Revente de place

{% if no_resell %}

Places non revendues

{% csrf_token %}
    {% for attribution in no_resell %}
  1. {{attribution.spectacle}}
  2. {% endfor %}
{%endif%}

Places en cours de revente

{% csrf_token %}
    {% for attribution in resell %}
  1. {{attribution.spectacle}}
  2. {% endfor %}
{% endblock %}