aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2023-04-23 12:01:18 +0200
committerDaniel Schadt <kingdread@gmx.de>2023-04-23 12:01:18 +0200
commit4ddb87faeecaf91e2bd52572e0d2116c49eda452 (patch)
tree5387762261fbfff8b6c81c3174ab85cd4b3a903b
parent6ed053c4259705e055a70ed18c2336123250b887 (diff)
downloadfietsboek-4ddb87faeecaf91e2bd52572e0d2116c49eda452.tar.gz
fietsboek-4ddb87faeecaf91e2bd52572e0d2116c49eda452.tar.bz2
fietsboek-4ddb87faeecaf91e2bd52572e0d2116c49eda452.zip
show upload time in user's local tiemzone
-rw-r--r--fietsboek/templates/home.jinja22
1 files changed, 1 insertions, 1 deletions
diff --git a/fietsboek/templates/home.jinja2 b/fietsboek/templates/home.jinja2
index 26a06d3..940d31a 100644
--- a/fietsboek/templates/home.jinja2
+++ b/fietsboek/templates/home.jinja2
@@ -8,7 +8,7 @@
{{ _("page.home.unfinished_uploads") }}
<ul class="mb-0">
{% for upload in unfinished_uploads %}
- <li><a href="{{ request.route_url("finish-upload", upload_id=upload.id) }}">{{ upload.uploaded_at | format_datetime }}</a></li>
+ <li><a href="{{ request.route_url("finish-upload", upload_id=upload.id) }}">{{ upload.uploaded_at | local_datetime }}</a></li>
{% endfor %}
</ul>
</div>