diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-08-10 07:06:14 +0530 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-08-10 07:06:14 +0530 |
commit | 0981c73411f3d34d258bc4fd47606d6da41077b8 (patch) | |
tree | 04eff4963a0511a086d80d1e76b787a96eae3ee1 /hyperkitty/templates | |
parent | c629cbceabddd5335dc42f7a3916e9c3d1a06db8 (diff) | |
download | hyperkitty-0981c73411f3d34d258bc4fd47606d6da41077b8.tar.gz hyperkitty-0981c73411f3d34d258bc4fd47606d6da41077b8.tar.xz hyperkitty-0981c73411f3d34d258bc4fd47606d6da41077b8.zip |
Feature : Add tag to email threads
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/search.html | 4 | ||||
-rw-r--r-- | hyperkitty/templates/threads/right_col.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/hyperkitty/templates/search.html b/hyperkitty/templates/search.html index e0e4f8c..559eba4 100644 --- a/hyperkitty/templates/search.html +++ b/hyperkitty/templates/search.html @@ -14,7 +14,7 @@ <!-- New thread --> <div class="thread"> <div class="notsaved"> - <a href="/thread/{{list_address}}/{{email.thread_id}}"> <span class="thread_title">{{email.subject}}</span> </a> + <a href="{% url thread threadid=email.thread_id, mlist_fqdn=list_address %}"> <span class="thread_title">{{email.subject}}</span> </a> <span class="thread_date">{{email.date}}</span> </div> <div class="thread_content"> @@ -24,7 +24,7 @@ </div> {% else %} <div class="inline-block type type_{{email.category|lower}}"> - <a href="/tag/{{list_address}}/{{email.category|lower}}"> {{email.category}} </a> + <a href="{% url search_tag mlist_fqdn=list_address, tag=email.category|lower %}"> {{email.category}} </a> </div> {% endif %} <div class="inline-block gravatar"> diff --git a/hyperkitty/templates/threads/right_col.html b/hyperkitty/templates/threads/right_col.html index 71ec1b6..78f0621 100644 --- a/hyperkitty/templates/threads/right_col.html +++ b/hyperkitty/templates/threads/right_col.html @@ -31,7 +31,7 @@ <ul class="inline"> {% for tag in tags %} <li> - {{ tag }} | + <a href="{% url search_tag mlist_fqdn=list_address, tag=tag.tag %}" > {{ tag.tag }} </a>| </li> {% endfor %} </ul> |