summaryrefslogtreecommitdiffstats
path: root/templates/questions.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/questions.html')
-rw-r--r--templates/questions.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/templates/questions.html b/templates/questions.html
index 21ac18ce..a531d954 100644
--- a/templates/questions.html
+++ b/templates/questions.html
@@ -1,5 +1,6 @@
<!-- questions.html -->
{% extends "base.html" %}
+{% load i18n %}
{% load extra_tags %}
{% load i18n %}
{% load humanize %}
@@ -138,15 +139,13 @@
<p>{% trans "Questions are sorted by the <strong>number of votes</strong>." %}
{% trans "Most voted questions are shown first." %}</p>
{% endifequal %}
-
-
</p>
</div>
<div class="boxC">
<h3 class="subtitle">{% trans "Related tags" %}</h3>
<div class="tags">
{% for tag in tags %}
- <a rel="tag" title="{% trans "see questions tagged" %}'{{ tag.name }}'{% trans "using tags" %}" href="{% url forum.views.tag tag.name|urlencode %}">{{ tag.name }}</a>
+ <a rel="tag" title="{% blocktrans with tag.name as tagname %}see questions tagged '{{ tagname }}'{% endblocktrans %}" href="{% url forum.views.tag tag.name|urlencode %}">{{ tag.name }}</a>
<span class="tag-number">× {{ tag.used_count|intcomma }}</span>
<br>
{% endfor %}