diff --git a/pyi2phosts/templates/browse.html b/pyi2phosts/templates/browse.html index be19af3..d17a54b 100644 --- a/pyi2phosts/templates/browse.html +++ b/pyi2phosts/templates/browse.html @@ -16,7 +16,20 @@ {% if is_paginated %} - {% load paginator %}{% paginator 3 %} +
+ {% if page_obj.has_previous %} + + < Prev + + {% endif %} + + Page {{ page_obj.number }} of {{ paginator.num_pages }} + + {% if page_obj.has_next %} + Next > + {% endif %} + {{ paginator.count }} {% trans "hosts total" %} + {% endif %} {% endblock %}