diff options
author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-03-31 17:01:03 +0200 |
---|---|---|
committer | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-03-31 17:01:03 +0200 |
commit | 1d6f68a57113cccbf4a88b84d59fc4ec16221cad (patch) | |
tree | 5a2637a6c915c36957d90a395c43974b8f5c136f | |
parent | 248161a0093d88f40b12c2d385510a24f72920eb (diff) | |
download | hyperkitty-1d6f68a57113cccbf4a88b84d59fc4ec16221cad.tar.gz hyperkitty-1d6f68a57113cccbf4a88b84d59fc4ec16221cad.tar.xz hyperkitty-1d6f68a57113cccbf4a88b84d59fc4ec16221cad.zip |
Add link to the threads
-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 %} |