{% extends "base.html"%} {% block pagebody %}

Ciao {{current_user.firstName}}!

Film disponibili {{date.strftime("%d/%m/%Y")}} {% if films and ((films | length) > 0) %}
    {% for film in films %}
  • movie {{film.film.name}}
    {% for show in film.shows %}
    access_time {{show.date.strftime("%H:%M")}}
    {% if now < show.date %} {% endif %}
    {% endfor %}
  • {% endfor %}
{% else %}
Oggi non ci sono film proiettati
{% endif %}
{% endblock %}