Commit 1eb77eb2216c7ff91c07c856aa4f37163266b370
1 parent
c6feabda
Exists in
master
and in
39 other branches
Adding link to user groups on profile - closes #106
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/accounts/templates/accounts/user_detail.html
... | ... | @@ -65,7 +65,7 @@ |
65 | 65 | {% if user_.mailinglists %} |
66 | 66 | <b>{% trans 'Groups: ' %}</b> |
67 | 67 | {% for list in user_.mailinglists %} |
68 | - <span class="label label-primary">{{ list }}</span> | |
68 | + <a href="{% url 'haystack_search' %}?order=latest&type=thread&list={{ list }}"><span class="label label-primary">{{ list }}</span></a> | |
69 | 69 | {% endfor %} |
70 | 70 | {% endif %} |
71 | 71 | ... | ... |