diff options
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/bookmarks.html | 8 |
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> |