diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-07-15 11:39:45 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-07-15 11:39:45 +0200 |
commit | 1a339ac1f7dac6e63b83864b6421aed1b0fdde75 (patch) | |
tree | 36e547489dee3ba3e192dd5c3254dab3bec03e9d /hyperkitty/templates/threads | |
parent | 6c60d43903503d01173098c456211e79a318221e (diff) | |
download | hyperkitty-1a339ac1f7dac6e63b83864b6421aed1b0fdde75.tar.gz hyperkitty-1a339ac1f7dac6e63b83864b6421aed1b0fdde75.tar.xz hyperkitty-1a339ac1f7dac6e63b83864b6421aed1b0fdde75.zip |
Show the unread icon in the overview page
Diffstat (limited to 'hyperkitty/templates/threads')
-rw-r--r-- | hyperkitty/templates/threads/summary_thread.html | 6 | ||||
-rw-r--r-- | hyperkitty/templates/threads/summary_thread_large.html | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/hyperkitty/templates/threads/summary_thread.html b/hyperkitty/templates/threads/summary_thread.html index 82c9398..2176936 100644 --- a/hyperkitty/templates/threads/summary_thread.html +++ b/hyperkitty/templates/threads/summary_thread.html @@ -6,7 +6,11 @@ {% if counter %}<span class="thread-id">#{{counter}}</span>{% endif %} <span class="thread-title"><a name="{{thread.thread_id}}" href="{% url 'thread' threadid=thread.thread_id mlist_fqdn=mlist.name %}" - >{{ thread.subject|strip_subject:mlist }}</a></span> + >{{ thread.subject|strip_subject:mlist }}</a> + {% if thread.unread %} + <i class="unread icon-eye-close" title="New messages in this thread"></i> + {% endif %} + </span> <div class="thread-stats"> <ul class="inline-block"> {% if thread.category %} diff --git a/hyperkitty/templates/threads/summary_thread_large.html b/hyperkitty/templates/threads/summary_thread_large.html index 05a7e99..450278b 100644 --- a/hyperkitty/templates/threads/summary_thread_large.html +++ b/hyperkitty/templates/threads/summary_thread_large.html @@ -7,7 +7,7 @@ <div class="{% if thread.favorite %}saved{% else %}notsaved{% endif %}"> <span class="thread-title"> {% if thread.unread %} - <i class="unread icon-eye-close" title="Unread"></i> + <i class="unread icon-eye-close" title="New messages in this thread"></i> {% endif %} <a name="{{thread.thread_id}}" href="{% url 'thread' threadid=thread.thread_id mlist_fqdn=mlist.name %}" |