diff options
Diffstat (limited to 'src/jwebmail/templates/_main_table.html')
-rw-r--r-- | src/jwebmail/templates/_main_table.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/jwebmail/templates/_main_table.html b/src/jwebmail/templates/_main_table.html index 35fdeec..700d77c 100644 --- a/src/jwebmail/templates/_main_table.html +++ b/src/jwebmail/templates/_main_table.html @@ -18,7 +18,9 @@ <div class="column is-2"> {% if msg.head.date %} - {{ parse_iso_date(msg.head.date)|datetimeformat }} + <time datetime="{{msg.head.date}}" class=jwm-tolocaltime> + {{ parse_iso_date(msg.head.date)|datetimeformat }} + </time> {% else %} {{ gettext("unknown") }} {% endif %} @@ -37,7 +39,8 @@ </div> <div class=media-right> - <input type="checkbox" name="{{ msg.message_handle }}" form="move-mail remove-mail" class="jwm-mail-checkbox"> + <input type="checkbox" name="{{ msg.message_handle }}" form="move-mail remove-mail" + class="jwm-mail-checkbox"> </div> </tag> |