diff options
-rw-r--r-- | templates/recent_activities.html | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/templates/recent_activities.html b/templates/recent_activities.html index 009f2a9..8def768 100644 --- a/templates/recent_activities.html +++ b/templates/recent_activities.html @@ -25,7 +25,12 @@ $(function() { <!-- Start thread --> <div class="thread"> <span class="thread_id">#{{forloop.counter}}</span> - <span class="thread_title">{{email.Subject}}</span> + <span class="thread_title"> + <a name="{{email.ThreadID}}" + href="/thread/{{list_address}}/{{email.ThreadID}}"> + {{email.Subject}} + </a> + </span> <div class="thread_stats"> <ul class="inline-block"> {% if email.category_tag %} @@ -58,7 +63,12 @@ $(function() { <!-- Start thread --> <div class="thread"> <span class="thread_id">#{{forloop.counter}}</span> - <span class="thread_title">{{email.Subject}}</span> + <span class="thread_title"> + <a name="{{email.ThreadID}}" + href="/thread/{{list_address}}/{{email.ThreadID}}"> + {{email.Subject}} + </a> + </span> <div class="thread_stats"> <ul class="inline-block"> {% if email.category_tag %} |