{% extends 'base.html' %} {% load static %} {% block title %}LISTA FILM {% endblock title %} {% block content %}

FILM

GENERE:
{% for lista_film in films %}

{{ lista_film.titolo }}

{% for genere_film in lista_film.genere.all %} {{ genere_film.genere }} {% endfor %} {{ lista_film.voto }}
{% endfor %} {% if films.has_other_pages %}
    {% if films.has_previous %}
  • {% endif %} {% for i in films.paginator.page_range %} {% if films.number == i %}
  • {{i}}
  • {% else %}
  • {{i}}
  • {% endif %} {% endfor %} {% if films.has_next %}
  • {% endif %}
{% endif %}
{% endblock content %}