summaryrefslogtreecommitdiffstats
path: root/forum/skins/default/templates/tags.html
diff options
context:
space:
mode:
Diffstat (limited to 'forum/skins/default/templates/tags.html')
-rw-r--r--forum/skins/default/templates/tags.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/forum/skins/default/templates/tags.html b/forum/skins/default/templates/tags.html
index 50f90fb1..6627db32 100644
--- a/forum/skins/default/templates/tags.html
+++ b/forum/skins/default/templates/tags.html
@@ -1,4 +1,4 @@
-{% extends "base_content.html" %}
+{% extends "base.html" %}
<!-- tags.html -->
{% load i18n %}
{% load extra_tags %}
@@ -27,7 +27,7 @@
{% block content %}
<!-- Tabs -->
<div class="tabBar">
- <div class="headQuestions">{% trans "Tag list" %}</div>
+ <div class="headUsers">{% trans "Tag list" %}</div>
<div class="tabsA">
<a id="sort_name" href="{% url tags %}?sort=name" class="off" title="{% trans "sorted alphabetically" %}">{% trans "by name" %}</a>
<a id="sort_used" href="{% url tags %}?sort=used" class="off" title="{% trans "sorted by frequency of tag use" %}">{% trans "by popularity" %}</a>
@@ -36,7 +36,7 @@
<div id="searchtags">
<p>
{% if stag %}
- {% trans "All tags matching query" %} '<span class="darkred"><strong>{{ stag }}</strong></span>' {% trans "all tags - make this empty in english" %}:
+ {% blocktrans %}All tags matching '<span class="darkred"><strong>{{ stag }}</strong></span>'{% endblocktrans %}:
{% endif %}
{% if not tags.object_list %}
<span>{% trans "Nothing found" %}</span>
@@ -46,7 +46,8 @@
<ul class="tagsList tags">
{% for tag in tags.object_list %}
<li>
- <a href="{% url tag_questions tag|urlencode %}" title="{% trans "see questions tagged" %}'{{ tag }}'{% trans "using tags" %}" rel="tag">
+ <a href="{% url questions %}?tags={{tag|urlencode}}"
+ title="{% blocktrans %}see questions tagged '{{ tag }}'{% endblocktrans %}" rel="tag">
{{ tag }}
</a>&nbsp;
<span class="tag-number">&#215; {{ tag.used_count|intcomma }}</span>