{% extends 'appendixapp/base.html' %} {% block title %}pagination{% endblock %} {% block content %}

ページネーションのサンプル

{% for sample in page_obj %} {% endfor %}
ID 名前
{{ sample.id }} {{ sample.name }}

{% if page_obj.has_previous %} 前のページ {% endif %} 現在のページ: {{ page_obj.number }} {% if page_obj.has_next %} 次のページ {% endif %}
{% endblock %}