Commit d64dd7298f54840e092acb2e51c4ed2139cd50cd
1 parent
ddae787b
Exists in
master
and in
39 other branches
Minor fix on thread previews with the tag links
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/super_archives/templates/message-preview.html
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 | <span class="glyphicon glyphicon-{{ result.icon_name }}" title="{{ result.type }}"></span> |
6 | 6 | |
7 | 7 | {% if result.tag %} |
8 | -<a href="{% firstof result.mailinglist_url result.url %}"> | |
8 | +<a href="{% firstof result.mailinglist_url result.mailinglist.get_absolute_url result.url %}"> | |
9 | 9 | <span class="label label-primary">{{ result.tag }}</span> |
10 | 10 | </a> |
11 | 11 | {% endif %} | ... | ... |