1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-07 00:15:10 +01:00

Templates are more complete, working navigation, tags overview page

This commit is contained in:
2016-07-17 21:22:06 +02:00
parent 7fd61c8426
commit 26d07795bd
5 changed files with 52 additions and 16 deletions

View File

@@ -1,6 +1,6 @@
{% extends "base.html" %}
{% block title %}Bookmarks{% endblock %}
{% block pagetitle %}Bookmarks{% endblock %}
{% block pageheader %}Bookmarks{% endblock %}
{% block pagecontent %}
<div class="row">
{% for bookmark in object_list %}
@@ -21,9 +21,11 @@
</div>
{% endfor %}
{#
<div class="pagination">
{% if page > 1 %}<a href="./?page={{ page - 1 }}">Previous</a>{% endif %}
{% if pagination.get_pages() > page %}<a href="./?page={{ page + 1 }}">Next</a>{% endif %}
</div>
#}
</div>
{% endblock %}