diff options
| author | Aurélien Bompard <aurelien@bompard.org> | 2013-02-07 14:52:18 +0100 |
|---|---|---|
| committer | Aurélien Bompard <aurelien@bompard.org> | 2013-02-07 15:00:29 +0100 |
| commit | aae9a5a1b6c75095817c0914ef7b92e63903fc2e (patch) | |
| tree | 6173bf6f1f64f1296dabf792e63679e9e955b53f /hyperkitty/templates/threads/summary_thread.html | |
| parent | 76e48cc49fc7c73ba9642129059c2e51234c3fe6 (diff) | |
| download | hyperkitty-aae9a5a1b6c75095817c0914ef7b92e63903fc2e.tar.gz hyperkitty-aae9a5a1b6c75095817c0914ef7b92e63903fc2e.tar.xz hyperkitty-aae9a5a1b6c75095817c0914ef7b92e63903fc2e.zip | |
Fix the tags search view (#35)
And factor some views/templates while I'm at it. And remove
unused/obsolete stuff in the same move.
Diffstat (limited to 'hyperkitty/templates/threads/summary_thread.html')
| -rw-r--r-- | hyperkitty/templates/threads/summary_thread.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hyperkitty/templates/threads/summary_thread.html b/hyperkitty/templates/threads/summary_thread.html index 16b6804..578b051 100644 --- a/hyperkitty/templates/threads/summary_thread.html +++ b/hyperkitty/templates/threads/summary_thread.html @@ -4,19 +4,19 @@ <div class="thread"> <span class="thread_id">#{{counter}}</span> <span class="thread_title"><a name="{{thread.thread_id}}" - href="{% url thread threadid=thread.thread_id, mlist_fqdn=list_address %}" + href="{% url thread threadid=thread.thread_id, mlist_fqdn=mlist.name %}" >{{ thread.subject|strip_subject:mlist }}</a></span> <div class="thread_stats"> <ul class="inline-block"> {% if thread.category_tag %} <li class="type type_{{thread.category_tag}}"> - <a href="{% url search_tag mlist_fqdn=list_address, tag=thread.category_tag %}" + <a href="{% url search_tag mlist_fqdn=mlist.name, tag=thread.category_tag %}" >{{thread.category}}</a> </li> {% endif %} {% if thread.category %} <li class="type type_{{thread.category|lower}}"> - <a href="{% url search_tag mlist_fqdn=list_address, tag=thread.category|lower %}" + <a href="{% url search_tag mlist_fqdn=mlist.name, tag=thread.category|lower %}" >{{thread.category}}</a> </li> {% endif %} |
