{% extends "base.html" %} {% block content %} {{ term.name }} {% if paginator %} {% set pages = paginator.pages %} {% else %} {% set pages = term.pages %} {% endif %} {% for page in pages %} {% if page.date %}{{ page.date }} - {% endif %}{{ page.title }} {% endfor %} {% if paginator %} {% if paginator.previous %}<< First < Previous{% endif %} [{{ paginator.current_index }}/{{ paginator.number_pagers }}] {% if paginator.next %}Next > Last >>{% endif %} {% endif %} {% endblock content %}
{% if paginator.previous %}<< First < Previous{% endif %} [{{ paginator.current_index }}/{{ paginator.number_pagers }}] {% if paginator.next %}Next > Last >>{% endif %}