templates/Event/Partials/user_event_status.html.twig line 1

Open in your IDE?
  1. {% if showIndended %}
  2.     {% set label = 'app.planning.wish.presence' | trans | capitalize %}
  3.     <div class="{{ class }}">
  4.         {% include 'Event/Partials/part_event_status.html.twig' with {eventStatus: userPosts.INTENDED, column: 'intended', label: label} %}
  5.     </div>
  6. {% endif %}
  7. {% if showPrevision %}
  8.     {% set label = 'app.planning.wish.wish' | trans | capitalize %}
  9.     <div class="{{ class }}">
  10.         {% include 'Event/Partials/part_event_status.html.twig' with {eventStatus: userPosts.PREVISION, column: 'prevision', label: label} %}
  11.     </div>
  12. {% endif %}
  13. {% if showFinal %}
  14.     {% set label = 'app.planning.wish.validate' | trans | capitalize %}
  15.     <div class="{{ class }}">
  16.         {% include 'Event/Partials/part_event_status.html.twig' with {eventStatus: userPosts.FINAL, column: 'final', label: label} %}
  17.     </div>
  18. {% endif %}