{% extends "base.html" %} {% block content_title %}{% endblock %} {% block content %} {% if articles %} {% for article in articles_page.object_list %} {# First item #} {% if loop.first and not articles_page.has_previous() %}
{% if loop.length == 1 %} {% include 'pagination.html' %} {% endif %} {# other items #} {% else %} {% if loop.last and (articles_page.has_previous() or not articles_page.has_previous() and loop.length > 1) %} {% include 'pagination.html' %} {% endif %} {% endif %} {# First item if #} {% endfor %} {# For article #} {% endif %} {# If articles #} {% endblock content %}