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

Places en cours de revente

{% csrf_token %}
    {% for attribution in resell %} {% csrf_token %}
  1. {{attribution.spectacle}} {% if attribution.revente.cancellable %}{%endif%}
  2. {% endfor %}
{% endif %} {% endblock %}