aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-29 14:55:35 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-29 14:55:35 +0200
commit9535a659324c03d613fdb2c0e73754a57eea8a3c (patch)
tree869de26a518e9814e475108027ae6481d2925405 /src
parentDisplay edition/deletion links only for connected users. (diff)
downloadnewspipe-9535a659324c03d613fdb2c0e73754a57eea8a3c.tar.gz
newspipe-9535a659324c03d613fdb2c0e73754a57eea8a3c.tar.bz2
newspipe-9535a659324c03d613fdb2c0e73754a57eea8a3c.zip
More human readable date format.
Diffstat (limited to 'src')
-rw-r--r--src/web/templates/bookmarks.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html
index 6e79bed2..3c4cc0db 100644
--- a/src/web/templates/bookmarks.html
+++ b/src/web/templates/bookmarks.html
@@ -25,7 +25,7 @@
<p class="list-group-item-text">
<div class="text-muted">{{ bookmark.description }}</div>
<div>{{ " ".join(bookmark.tags_proxy) }}</div>
- {{ bookmark.time }}
+ {{ bookmark.time | datetime }}
{% if current_user.is_authenticated %}
<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>
bgstack15