{% extends 'base.html' %} {% load bootstrap3 %} {% load modal_tags %} {% block eventtab %} class="active"{% endblock %} {% block css %} {{ block.super }} {{ form.media.css }} {% endblock %} {% block content %}
{% if user_have_registration %}
Vous possédez déjà une place pour cet évènement.
{% else %}
{% if ticket.long_notes %}

Description du billet :

{{ ticket.long_notes }}

{% elif ticket.short_notes %}

Description du billet :

{{ ticket.short_notes }}

{% endif %}

Prix de base du billet :

{{ ticket.price }}€

Options :

{% csrf_token %} {% bootstrap_form options_form show_label=False %} {% for f in options_exclusive_form %} {% for field in f %} {% bootstrap_field field show_label=False %} {% endfor %} {% endfor %} {% if info_sup %}

Les informations suivantes devront être fournies :

    {% for info in info_sup %}
  • {{ info.name }}{% if info.description %} {% endif %}
  • {% endfor %}

{% endif %} {{ term_of_use_form.conditions_field }} Je certifie avoir lu et accepté les conditions de vente de cet évènement. et la charte de la billetterie. {% buttons %}

{% endbuttons %}
{% endif %}
{% if not ticket.allowed_external and not ticket.allowed_godson %}
Ce billet n’est pas ouvert aux parrainages.
{% elif not ticket.allowed_external and godson_limit == 0 %}
Cet évènement ne permet pas les parrainages.
{% elif not ticket.allowed_external and godson_remaining <= 0 %}
Vous avez atteint la limite du nombre de personnes que vous êtes autorisé à parrainer ({{ godson_limit }}).
{% else %}
{% if not ticket.allowed_external %}

Vous pouvez parrainer jusqu’à {{ godson_limit }} personne{{ godson_limit|pluralize }}.

{% if godson_count %}

Vous parrainez déjà {{ godson_count }} personne{{ godson_count|pluralize }}.

{% endif %} {% endif %} {% if ticket.long_notes or ticket.short_notes %}

Description du billet :

{% if ticket.long_notes %}{{ ticket.long_notes }}{% else %}{{ ticket.short_notes }}{% endif %}

{% endif %}

Prix de base du billet :

{{ ticket.price }}€

Options :

{% bootstrap_form options_form show_label=False %} {% for f in options_exclusive_form %} {% for field in f %} {% bootstrap_field field show_label=False %} {% endfor %} {% endfor %} {% csrf_token %} {% bootstrap_field form.payee %} {% if info_sup %}

Les informations suivantes devront être fournies :

    {% for info in info_sup %}
  • {{ info.name }}{% if info.description %} {% endif %}
  • {% endfor %}

{% endif %} {{ form.conditions_field }} La personne bénéficiant de cette place a lu et accepté les conditions de vente de cet évènement et la charte de la billetterie. {% buttons %}
{% endbuttons %}
{% endif %}
{% endblock %} {% block js_foot %} {{ block.super }} {{ form.media.js }} {% endblock %}