X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=templates%2Fpatchwork%2Fpagination.html;fp=templates%2Fpatchwork%2Fpagination.html;h=0000000000000000000000000000000000000000;hb=ad2762cf775a8dde508de47164d6429f3fd724f1;hp=3e951265ca1e93d334b6e2291bb3b58ef9f66cff;hpb=f09e982f58384946111d4157fd2b7c2b31b78612;p=patchwork diff --git a/templates/patchwork/pagination.html b/templates/patchwork/pagination.html deleted file mode 100644 index 3e95126..0000000 --- a/templates/patchwork/pagination.html +++ /dev/null @@ -1,45 +0,0 @@ -{% load listurl %} - -{% ifnotequal page.paginator.num_pages 1 %} -
-{% if page.has_previous %} - - « Previous -{% else %} - « Previous -{% endif %} - -{% if page.paginator.trailing_set %} - {% for p in page.paginator.trailing_set %} - {{ p }} - {% endfor %} - ... -{% endif %} - -{% for p in page.paginator.adjacent_set %} - {% ifequal p page.number %} - {{ p }} - {% else %} - {{ p }} - {% endifequal %} -{% endfor %} - -{% if page.paginator.leading_set %} - ... - {% for p in page.paginator.leading_set %} - {{ p }} - {% endfor %} -{% endif %} - -{% if page.has_next %} - - Next » - -{% else %} - Next » -{% endif %} -
-{% endifnotequal %}