diff --git a/ontology/templates/ontology/topic_list.html b/ontology/templates/ontology/topic_list.html index f0f869dba4723be1509d6c8fae7437ea8d31cbbf..b61a206ab5f93ef34279ce4f72ae72601e19125b 100644 --- a/ontology/templates/ontology/topic_list.html +++ b/ontology/templates/ontology/topic_list.html @@ -28,6 +28,14 @@ <li><a href="{% url 'ontology:topic_details' slug=topic.slug %}">{{ topic }}</a></li> {% endfor %} </ul> + + + {% if is_paginated %} + <div class="col-12"> + {% include 'partials/pagination.html' with page_obj=page_obj %} + </div> + {% endif %} + </div> </div> diff --git a/ontology/views.py b/ontology/views.py index c88db65aa70b9c8f7da257de7e2327d798ed3d34..1dc5b8673f61107efc8d886b2409a75147aa53f8 100644 --- a/ontology/views.py +++ b/ontology/views.py @@ -12,7 +12,7 @@ from django.views.generic.list import ListView from .models import Topic, RelationAsym, RelationSym -from scipost.mixins import PermissionsMixin +from scipost.mixins import PaginationMixin, PermissionsMixin def ontology(request): @@ -41,8 +41,9 @@ class TopicUpdateView(PermissionsMixin, UpdateView): success_url = reverse_lazy('ontology:topics') -class TopicListView(ListView): +class TopicListView(PaginationMixin, ListView): model = Topic + paginate_by = 25 class TopicDetailView(DetailView):