aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-24 23:06:32 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-24 23:06:32 +0200
commitd15d428a59df925c9cb25ea869d7007132cb4416 (patch)
treed3abf3896f0253dd67b009cf9def659224b7cad4 /src/web/templates
parentImport bookmarks from pinboard.in (diff)
downloadnewspipe-d15d428a59df925c9cb25ea869d7007132cb4416.tar.gz
newspipe-d15d428a59df925c9cb25ea869d7007132cb4416.tar.bz2
newspipe-d15d428a59df925c9cb25ea869d7007132cb4416.zip
Import from pinboard is now faster. Bookmarks are sorted by time.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/bookmarks.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html
index 699d7e62..96f38d26 100644
--- a/src/web/templates/bookmarks.html
+++ b/src/web/templates/bookmarks.html
@@ -1,7 +1,6 @@
{% extends "layout.html" %}
{% block content %}
<div class="container">
- <h1>{{ _('Bookmarks') }}</h1>
<ul class="list-group">
{% for bookmark in bookmarks %}
<li class="list-group-item">
@@ -11,9 +10,10 @@
</h4>
<p class="list-group-item-text">
<div class="text-muted">{{ bookmark.description }}</div>
- {{ " ".join(bookmark.tags_proxy) }}
- <a href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a>
- <a href="{{ url_for('bookmark.delete', bookmark_id=bookmark.id) }}">delete</a>
+ <div>{{ " ".join(bookmark.tags_proxy) }}</div>
+ {{ bookmark.time }}
+ <a class="text-muted" href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a>
+ <a class="text-muted" href="{{ url_for('bookmark.delete', bookmark_id=bookmark.id) }}">delete</a>
</p>
</a>
</li>
bgstack15