diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-11-13 18:40:28 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-11-13 18:40:28 +0100 |
commit | f1a450e74c83c4ced9de20b59ae2d39512921ce1 (patch) | |
tree | a668c6e962f2e1934d9234a1cf0ea1c9be4d2e1f /src | |
parent | Added a column for the date of the articles. (diff) | |
download | newspipe-f1a450e74c83c4ced9de20b59ae2d39512921ce1.tar.gz newspipe-f1a450e74c83c4ced9de20b59ae2d39512921ce1.tar.bz2 newspipe-f1a450e74c83c4ced9de20b59ae2d39512921ce1.zip |
Format the date.
Diffstat (limited to 'src')
-rw-r--r-- | src/web/templates/feed.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/feed.html b/src/web/templates/feed.html index 22bf0372..e3241ede 100644 --- a/src/web/templates/feed.html +++ b/src/web/templates/feed.html @@ -58,7 +58,7 @@ {% for article in articles %} <tr> <td><a href="{{ url_for("article.article_pub", article_id=article.id) }}">{{ article.title }}</a></td> - <td>{{ article.date }}</td> + <td>{{ article.date | datetime }}</td> </tr> {% endfor %} </tbody> |