Skip to content
Snippets Groups Projects
Commit 76a9697b8ada authored by Cédric Krier's avatar Cédric Krier :atom:
Browse files

Format dtstart and dtend using RFC5545 instead of ISO

parent b3e5bc87de63
No related branches found
No related tags found
No related merge requests found
......@@ -45,5 +45,5 @@
<div class="d-flex w-100 justify-content-between">
<h4 class="summary">{{ event.summary }}</h4>
<small>
<span class="dtstart" title="{{ event.start.isoformat() }}">{{ event.start.strftime('%H:%M') }}</span>
<span class="dtstart" title="{{ event.start.strftime('%Y%m%dT%H%M%S') }}">{{ event.start.strftime('%H:%M') }}</span>
-
......@@ -49,5 +49,5 @@
-
<span class="dtend" title="{{ event.end.isoformat() }}">{{ event.end.strftime('%H:%M') }}</span>
<span class="dtend" title="{{ event.end.strftime('%Y%m%dT%H%M%S') }}">{{ event.end.strftime('%H:%M') }}</span>
</small>
</div>
<p class="description">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment