summaryrefslogtreecommitdiffstats
path: root/forum/skins/default/templates/tag_selector.html
diff options
context:
space:
mode:
Diffstat (limited to 'forum/skins/default/templates/tag_selector.html')
-rw-r--r--forum/skins/default/templates/tag_selector.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/forum/skins/default/templates/tag_selector.html b/forum/skins/default/templates/tag_selector.html
index 5e3e2ad8..85b858d2 100644
--- a/forum/skins/default/templates/tag_selector.html
+++ b/forum/skins/default/templates/tag_selector.html
@@ -1,5 +1,6 @@
{% load i18n %}
{% load extra_tags %}
+{% comment %}todo - maybe disable navigation from ignored tags here when "hide" is on - with js?{%endcomment%}
<div id="tagSelector" class="boxC">
<h3 class="subtitle">{% trans "Interesting tags" %}</h3>
<div class="tags interesting marked-tags">
@@ -7,8 +8,8 @@
{% spaceless %}
<span class="deletable-tag" id="interesting-tag-{{tag_name}}">
<a rel="tag"
- title="{% blocktrans with tag as tagname %}see questions tagged '{{ tag_name }}'{% endblocktrans %}"
- href="{% url tag_questions tag_name|urlencode %}">{{tag_name}}</a>
+ title="{% blocktrans %}see questions tagged '{{ tag_name }}'{% endblocktrans %}"
+ href="{% url questions %}?tags={{tag_name|urlencode}}">{{tag_name}}</a>
<img class="delete-icon"
src="{% media "/media/images/close-small-dark.png" %}"
title="{% blocktrans %}remove '{{tag_name}}' from the list of interesting tags{% endblocktrans %}"/>
@@ -24,8 +25,8 @@
{% spaceless %}
<span class="deletable-tag" id="ignored-tag-{{tag_name}}">
<a rel="tag"
- title="{% blocktrans with tag as tagname %}see questions tagged '{{ tag_name }}'{% endblocktrans %}"
- href="{% url tag_questions tag_name|urlencode %}">{{tag_name}}</a>
+ title="{% blocktrans %}see questions tagged '{{ tag_name }}'{% endblocktrans %}"
+ href="{% url questions %}?tags={{tag_name|urlencode}}">{{tag_name}}</a>
<img class="delete-icon"
src="{% media "/media/images/close-small-dark.png" %}"
title="{% blocktrans %}remove '{{tag_name}}' from the list of ignored tags{% endblocktrans %}"/>