{% extends "base.html" %} {% load pagination_tags %} {% block content %} {% include 'comics/edit_nav.html' %}
add pages

Manage Pages

  • page
  • live date
  • actions
{% autopaginate pages 20 %} {% for page in pages %}
{{ page.post_date|date:"M j, Y" }}
{% if not forloop.first %} {% endif %} {% if not forloop.last %} {% endif %}
  edit  view 
{% empty %}

No pages.

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