diff options
Diffstat (limited to 'hyperkitty/templates/threads')
| -rw-r--r-- | hyperkitty/templates/threads/summary_thread.html | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/hyperkitty/templates/threads/summary_thread.html b/hyperkitty/templates/threads/summary_thread.html index 2176936..e9b2b1f 100644 --- a/hyperkitty/templates/threads/summary_thread.html +++ b/hyperkitty/templates/threads/summary_thread.html @@ -3,21 +3,23 @@ {% load storm %} <div class="thread"> - {% if counter %}<span class="thread-id">#{{counter}}</span>{% endif %} - <span class="thread-title"><a name="{{thread.thread_id}}" + <span class="thread-title"> + {% if counter %}<span class="thread-id">#{{counter}}</span>{% endif %} + <a name="{{thread.thread_id}}" href="{% url 'thread' threadid=thread.thread_id mlist_fqdn=mlist.name %}" - >{{ thread.subject|strip_subject:mlist }}</a> - {% if thread.unread %} + > + {% if thread.category %} + <span class="label category" style="background-color:{{thread.category.color}}"> + {{ thread.category.name|upper }} + </span> + {% endif %} + {% if thread.unread %} <i class="unread icon-eye-close" title="New messages in this thread"></i> {% endif %} + {{ thread.subject|strip_subject:mlist }}</a> </span> <div class="thread-stats"> <ul class="inline-block"> - {% if thread.category %} - <span class="label category" style="background-color:{{thread.category.color}}"> - {{ thread.category.name|upper }} - </span> - {% endif %} <li class="participant"> {{ thread.participants|length }} </li> |
