17 lines
No EOL
647 B
HTML
17 lines
No EOL
647 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block header %}
|
|
<h2>{{ section.title }}</h2>
|
|
{% endblock header %}
|
|
|
|
{% block content %}
|
|
{{ section.content | safe }}
|
|
{% if paginator %}
|
|
{% set pages = paginator.pages %}
|
|
{% else %}
|
|
{% set pages = section.pages %}
|
|
{% endif %}
|
|
{% if paginator %}
|
|
<p>{% if paginator.previous %}<a href="{{ paginator.first }}"><< First</a> <a href="{{ paginator.previous }}">< Previous</a>{% endif %} [{{ paginator.current_index }}/{{ paginator.number_pagers }}] {% if paginator.next %}<a href="{{ paginator.next }}">Next ></a> <a href="{{ paginator.last }}">Last >></a>{% endif %}</p>
|
|
{% endif %}
|
|
{% endblock content %} |