{% extends "base.html" %} {% load i18n utility_tags %} {% block content %}

{% trans "Najlepsze filmy" %}

{% for movie in object_list %}

{{ movie.place }}. {{ movie.title }} ({{ movie.year }}) {% trans "Ocena w IMDB" %}: {{ movie.rating }}

{% endfor %} {% if object_list.has_next %}

{% trans "Więcej…" %}

{% endif %}
{% endblock %} {% block extrabody %} {% endblock %}