diff options
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> |