aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-13 18:40:28 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-13 18:40:28 +0100
commitf1a450e74c83c4ced9de20b59ae2d39512921ce1 (patch)
treea668c6e962f2e1934d9234a1cf0ea1c9be4d2e1f /src/web/templates
parentAdded a column for the date of the articles. (diff)
downloadnewspipe-f1a450e74c83c4ced9de20b59ae2d39512921ce1.tar.gz
newspipe-f1a450e74c83c4ced9de20b59ae2d39512921ce1.tar.bz2
newspipe-f1a450e74c83c4ced9de20b59ae2d39512921ce1.zip
Format the date.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/feed.html2
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>
bgstack15