{% extends "flexbox.html"%} {% block flexcontent %} {% if action == 'add' %} {% set days=['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday'] %}
{{film_name}}
Nuove proiezioni
Orari
{% for day in days %}
{{day}}
{% endfor %}
{% else %}
{% if role == 'MANAGER' %} add {% endif %}
{% if shows and ((shows | length) > 0) %} Lista proiezioni {{film_name}} Clicca sul + per aggiungere delle proiezioni
    {% for show in shows %}
  • today {{show.date.strftime("%d/%m/%Y")}}
    access_time {{show.date.strftime("%H:%M")}} room {{show.theaterName}}
    {% if show.isDeletable %}
    delete
    {% endif %}
  • {% endfor %}
{% else %}
Non esistono ancora proiezioni per {{film_name}}
{% endif %}
{% endif %} {% endblock %}