{% extends "base.html" %} {% block head %} {{ super() }} {% endblock head %} {% block content_title %}{% endblock %} {% block content %} {% if articles %}
    {% for article in (articles_page.object_list if articles_page else articles) %}
  1. {{ article.title }}

    @{{ article.author }} dans le
  2. {% endfor %}
{% endif %} {% if articles_page and articles_paginator.num_pages > 1 %} {% include 'pagination.html' %} {% endif %} {% endblock content %}