{% import "Portfolio/macros/base.html" as m with context %} {% import "Portfolio/macros/forms.html" as f with context %} {% extends "Portfolio/PostAdmin/_layout.html" %} {% block admin_page_title %}All Posts{% endblock %} {% block admin_content %} {% for post in posts %} {% endfor %}
Type Title
{{ post.type.name }} {{ post.title }}
{{ m.pagination(posts, **query_vars) }} {% endblock %}