diff options
Diffstat (limited to 'hyperkitty/templates/threads')
-rw-r--r-- | hyperkitty/templates/threads/summary_thread_large.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/hyperkitty/templates/threads/summary_thread_large.html b/hyperkitty/templates/threads/summary_thread_large.html index 66b1a78..cea2be2 100644 --- a/hyperkitty/templates/threads/summary_thread_large.html +++ b/hyperkitty/templates/threads/summary_thread_large.html @@ -3,11 +3,15 @@ {% load hk_generic %} {% load storm %} - <div class="thread"> + <div class="thread{% if thread.unread %} unread{% endif %}"> <div class="{% if thread.favorite %}saved{% else %}notsaved{% endif %}"> - <span class="thread-title"><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-title"> + {% if thread.unread %} + <i class="unread icon-eye-close" title="Unread"></i> + {% endif %} + <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.date_active|timesince }}</span> </div> <div class="thread-content"> |