style tweaks, update source page

This commit is contained in:
meeb
2020-11-28 16:58:23 +11:00
parent c353e5c849
commit cd8048b477
10 changed files with 103 additions and 26 deletions

View File

@@ -1,7 +1,11 @@
{% if paginator.num_pages > 1 %}
<div class="pagination">
{% for i in paginator.page_range %}
<a class="pagenum{% if i == page_obj.number %} currentpage{% endif %}" href="?page={{ i }}">{{ i }}</a>
{% endfor %}
<div class="row">
<div class="col s12">
<div class="pagination">
{% for i in paginator.page_range %}
<a class="pagenum{% if i == page_obj.number %} currentpage{% endif %}" href="?page={{ i }}">{{ i }}</a>
{% endfor %}
</div>
</div>
</div>
{% endif %}