diff options
| author | Aurélien Bompard <aurelien@bompard.org> | 2013-05-27 20:52:03 +0200 |
|---|---|---|
| committer | Aurélien Bompard <aurelien@bompard.org> | 2013-05-27 21:18:29 +0200 |
| commit | dad66ad5a2c8a9645e0127e09283082f3c439a28 (patch) | |
| tree | a345405f0d4228b246f4b6dce3d00dcda1e06d91 /hyperkitty/templates/user_profile.html | |
| parent | 2a84b82a17e6986b3265d958f89d562c241a7a80 (diff) | |
| download | hyperkitty-dad66ad5a2c8a9645e0127e09283082f3c439a28.tar.gz hyperkitty-dad66ad5a2c8a9645e0127e09283082f3c439a28.tar.xz hyperkitty-dad66ad5a2c8a9645e0127e09283082f3c439a28.zip | |
Rework the display of email datetimes using timezones
Diffstat (limited to 'hyperkitty/templates/user_profile.html')
| -rw-r--r-- | hyperkitty/templates/user_profile.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hyperkitty/templates/user_profile.html b/hyperkitty/templates/user_profile.html index e84c72f..69c2ad7 100644 --- a/hyperkitty/templates/user_profile.html +++ b/hyperkitty/templates/user_profile.html @@ -60,7 +60,7 @@ <li> <a href="{% url 'thread' mlist_fqdn=fav.list_address threadid=fav.threadid %}" >{{ fav.thread.starting_email.subject }}</a> by {{ fav.thread.starting_email.sender_name }} - ({{ fav.thread|viewer_date|date:"l, j F Y H:i:s" }}) + ({{ fav.thread|get_date|date:"l, j F Y H:i:s" }}) </li> {% endfor %} </ul> @@ -83,7 +83,7 @@ {% if vote.message.content|trimString|length > 0 %} <a href="{% url 'message_index' mlist_fqdn=vote.list_address message_id_hash=vote.messageid %}" >{{ vote.message.subject }}</a> by {{ vote.message.sender_name }} - ({{ vote.message|viewer_date|date:"l, j F Y H:i:s" }}) + ({{ vote.message|get_date|date:"l, j F Y H:i:s" }}) {% else %} <a href="{% url 'message_index' mlist_fqdn=vote.list_address message_id_hash=vote.messageid %}">Message is empty</a> {% endif %} @@ -102,7 +102,7 @@ {% if vote.message.content|trimString|length > 0 %} <a href="{% url 'message_index' mlist_fqdn=vote.list_address message_id_hash=vote.messageid %}" >{{ vote.message.subject }}</a> by {{ vote.message.sender_name }} - ({{ vote.message|viewer_date|date:"l, j F Y H:i:s" }}) + ({{ vote.message|get_date|date:"l, j F Y H:i:s" }}) {% else %} <a href="{% url 'message_index' mlist_fqdn=vote.list_address message_id_hash=vote.messageid %}">Message is empty</a> {% endif %} |
