diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2014-01-06 19:08:04 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2014-01-06 19:08:04 +0100 |
commit | fb2d39fa937e14fdfc8f0053fb913f5f0cf76622 (patch) | |
tree | 02ff6c149b12904e1a905f7b266d770e019b4b4c | |
parent | 2435de842cf53a54d4b97bb578c0ac9936e9b7b7 (diff) | |
download | hyperkitty-fb2d39fa937e14fdfc8f0053fb913f5f0cf76622.tar.gz hyperkitty-fb2d39fa937e14fdfc8f0053fb913f5f0cf76622.tar.xz hyperkitty-fb2d39fa937e14fdfc8f0053fb913f5f0cf76622.zip |
Display the absolute date in threads
-rw-r--r-- | hyperkitty/templates/threads/summary_thread_large.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hyperkitty/templates/threads/summary_thread_large.html b/hyperkitty/templates/threads/summary_thread_large.html index 51e98a8..47fe84f 100644 --- a/hyperkitty/templates/threads/summary_thread_large.html +++ b/hyperkitty/templates/threads/summary_thread_large.html @@ -12,7 +12,10 @@ <a name="{{thread.thread_id}}" href="{% url 'thread' threadid=thread.thread_id mlist_fqdn=mlist.name %}" >{{ thread.starting_email.subject|strip_subject:mlist }}</a></span> - <span class="thread-date">{{ thread|get_date|timesince }}</span> + <span class="thread-date" + title="{{ thread|get_date|date:"l, j F Y H:i:s" }}"> + {{ thread|get_date|timesince }} + </span> </div> <div class="thread-content"> <div class="gravatar"> |