{% extends "base.html" %} {% load pagination_tags %} {% block content %}
{% include "news/newsarchive_nav.html" %} {% with 'list' as view_type %} {% autopaginate articles 10 %} {% for article in articles %} {% include 'news/item.html' %} {% empty %}

There are currently no articles.

{% endfor %} {% paginate %} {% endwith %} {% endblock %}