{% extends 'base.html.twig' %} {% block title %}Mes présences{% endblock %} {% block body %}
Liste des représentations non répondues
{% if representationsNonRepondu|length > 0 %}
{% for representation in representationsNonRepondu %} {% endfor %}
Spectacle Date Salle Présence Action
{% if representation.representation.spectacle.image %} {% endif %} {{ representation.representation.spectacle.name }}
{{ representation.representation.spectacle.description }}
{{ representation.representation.date|date('d M Y') }} à {{ representation.representation.heure|date('H:i') }} {% if representation.representation.heureRdv %}
Rendez-vous à {{ representation.representation.heureRdv|date('H:i') }} {% endif %}
{% if representation.representation.salle %} {{ representation.representation.salle.name }}
{{ representation.representation.salle.address }} {% else %} Non défini {% endif %}
{% if representation.presence %} {% set reponse = constant('App\\Constants\\ReponsePresence::' ~ representation.presence) %} {% else %} Non répondu {% endif %}
{% else %} Tu as tout répondu {% endif %}
Liste des représentations déjà répondues
{% for representation in representations %} {% endfor %}
Spectacle Date Salle Présence Action
{% if representation.representation.spectacle.image %} {% endif %} {% if representation.representation.date|date('ymdHi') + representation.representation.heure|date('Hi') > "now"|date('ymdHi') %} {{ representation.representation.spectacle.name }} {% else %} {{ representation.representation.spectacle.name }} {% endif %}
{{ representation.representation.spectacle.description }}
{{ representation.representation.date|date('d M Y') }} à {{ representation.representation.heure|date('H:i') }} {% if representation.representation.heureRdv %}
Rendez-vous à {{ representation.representation.heureRdv|date('H:i') }} {% endif %}
{% if representation.representation.salle %} {{ representation.representation.salle.name }}
{{ representation.representation.salle.address }} {% else %} Non défini {% endif %}
{% if representation.presence %} {% set reponse = constant('App\\Constants\\ReponsePresence::' ~ representation.presence) %} {% else %} Non répondu {% endif %} {% if representation.representation.date|date('ymdHi') + representation.representation.heure|date('Hi') > "now"|date('ymdHi') %} {% endif %}
{% endblock %} {% block modals %} {% endblock %} {% block javascripts %} {% endblock %}