aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-26 06:47:14 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-26 06:47:14 +0200
commit748a45f2e7b8de3928c0462304299c9751f729ed (patch)
tree665974a37ffc0cd12609861af59debc06da5bc3f /src/web/templates
parentBumped version number for Heroku. (diff)
downloadnewspipe-748a45f2e7b8de3928c0462304299c9751f729ed.tar.gz
newspipe-748a45f2e7b8de3928c0462304299c9751f729ed.tar.bz2
newspipe-748a45f2e7b8de3928c0462304299c9751f729ed.zip
added pagination for bookmarks
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/bookmarks.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html
index 96f38d26..39528322 100644
--- a/src/web/templates/bookmarks.html
+++ b/src/web/templates/bookmarks.html
@@ -1,6 +1,8 @@
{% extends "layout.html" %}
{% block content %}
<div class="container">
+ {{ pagination.info }}
+ {{ pagination.links }}
<ul class="list-group">
{% for bookmark in bookmarks %}
<li class="list-group-item">
@@ -19,5 +21,6 @@
</li>
{% endfor %}
</ul>
+ {{ pagination.links }}
</div><!-- /.container -->
{% endblock %}
bgstack15