diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-26 06:47:14 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-26 06:47:14 +0200 |
commit | 748a45f2e7b8de3928c0462304299c9751f729ed (patch) | |
tree | 665974a37ffc0cd12609861af59debc06da5bc3f /src/web/templates | |
parent | Bumped version number for Heroku. (diff) | |
download | newspipe-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.html | 3 |
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 %} |