{% extends 'guichet/event_base.html' %} {% load modal_tags %} {% load bootstrap3 %} {% load mathfilters %} {% block adminlistpaidregistrationstab %}{% if registration.paid %} class="active"{% endif %}{% endblock %} {% block adminlistunpaidregistrationstab %}{% if not registration.paid %} class="active"{% endif %}{% endblock %} {% block eventcontent %}

Informations sur la {% if not registration.paid %}pré-{% endif %}réservation

Nom du client :

{{ registration.owner.get_full_name }}

{% if registration.payee %}

Billet au nom de :

{{ registration.payee }}

{% endif %} {% if registration.ticket.long_notes %}

Description du billet :

{{ registration.ticket.long_notes }}

{% elif registration.ticket.short_notes %}

Description du billet :

{{ registration.ticket.short_notes }}

{% endif %}

Prix de base du billet :

{{ registration.ticket.price }}€

Prix avec les options :

{{ registration.get_real_amount }}€

{% if registration.options.all %}

Options :

{% endif %} {% if info_sup_form %}
{% csrf_token %}

Informations supplémentaires

Une fois un document validé, il ne sera pas possible de revenir en arrière.

    {% for info, form in info_sup_form %}
  • {{ info.reference.name }} {% if info.reference.description %} {% endif %} {% if info.state == info.STATE_ACCEPTED %} (Accepté) {% elif info.state == info.STATE_PENDING %} (En attente de validation) {% elif info.state == info.STATE_REJECTED %} (Rejeté) {% else %} (Manquante) {% endif %} {% for field in form %} {% bootstrap_field field show_label=False %} {% endfor %}
  • {% endfor %}
{% if request.managers_access >= manager_acl.EVENT_MANAGER %} {% buttons %}
{% endbuttons %} {% else %}

Vous n'avez pas les permissions nécessaires pour valider les documents reçus

{% endif %}
{% endif %} {% if request.managers_access >= manager_acl.EVENT_MANAGER %} {% if registration.paid %} {% if registration.opposed %}

{{ registration.get_reason_opposed_display }}

{% if not registration.ticket.is_remain %}

Plus de place disponible. En retirant l'opposition, vous confirmez pouvoir fournir une place supplémentaire à l'évènement.

{% endif %} {% endif %} {% if registration.is_free %} {% if registration.opposed %} Retirer l’opposition {% else %} Mettre en opposition {% endif %} {% else %}
{% endif %} {% if registration.ticket.design and registration.info_state == registration.STATE_CAN_ENTER %} Envoyer le ticket par email {% for f in dl_formats %} Imprimer le billet en {{ f }} {% endfor %} {% endif %} {% else %} {% if registration.info_state != registration.STATE_CANNOT_PAID %} {% if not registration.ticket.is_remain %}

Plus de place disponible. En validant un paiement, vous confirmez pouvoir fournir une place supplémentaire à l'évènement.

{% endif %}

Marquer comme payé :

{% for method in methods %} {{ method.1 }} {% endfor %} Autre {% endif %} Supprimer {% endif %} {% elif registration.paid and registration.opposed %}{% comment %}Pour les admins n'ayant pas les droits nécessaires{% endcomment %}

{{ registration.get_reason_opposed_display }}

{% endif %}
{% if ipns %}

Paiement reçus par paypal

{% for ipn in ipns %} {% endfor %}
Date Status De Pour Montant payé Taxe Montant perçu
{{ ipn.created_at|date:'d b o H:i' }} {{ ipn.payment_status }}{% if billetterie_prod and ipn.test_ipn != 0 %} (SANDBOX PAYPAL){% endif %} {% if ipn.is_reversed or ipn.is_refund or ipn.payment_status == "Canceled_Reversal" or ipn.payment_status == "Denied" %}
Reason : {{ ipn.reason_code }} {% endif %} {% if ipn.payment_status == "Pending" %}
Reason : {{ ipn.pending_reason }} {% endif %}
{{ ipn.payer_email }} {{ ipn.business }} {{ ipn.mc_gross }} {% if ipn.mc_currency == "EUR" %}€{% else %}{{ ipn.mc_currency }}{% endif %} {{ ipn.mc_fee }} {% if ipn.mc_currency == "EUR" %}€{% else %}{{ ipn.mc_currency }}{% endif %} {{ ipn.mc_gross|sub:ipn.mc_fee }} {% if ipn.mc_currency == "EUR" %}€{% else %} {{ ipn.mc_currency }}{% endif %}
{% endif %} {% if logs %}

Logs pour la réservation

{% for log in logs %} {% endfor %}
Date Utilisateur Opération
{{ log.date|date:'d b o H:i' }} {{ log.user.get_full_name }} {{ log.get_operation }}
{% endif %} {% confirm_modal_form %} {% email_modal_form %} {% endblock %} {% block js_foot %} {{ block.super }} {% confirm_modal_js %} {% email_modal_js %} {% endblock %}