colour tweaks and pagination

This commit is contained in:
meeb
2020-11-28 15:06:46 +11:00
parent b347959083
commit c353e5c849
8 changed files with 72 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
{% 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>
{% endif %}