summaryrefslogtreecommitdiffstats
path: root/templates/questions.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-08-03 00:42:33 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-08-03 00:42:33 -0400
commitf9f31bf848153c1c36f25ed5baf0978fff81abed (patch)
tree336330fbeee11ffb8fcb866f4dbaa855ea873f96 /templates/questions.html
parent6568706a83a94faa18a715ec5e50a6282dc85c1a (diff)
parente6d0c3145ca5447ede865e8145423cf5621a226a (diff)
downloadaskbot-f9f31bf848153c1c36f25ed5baf0978fff81abed.tar.gz
askbot-f9f31bf848153c1c36f25ed5baf0978fff81abed.tar.bz2
askbot-f9f31bf848153c1c36f25ed5baf0978fff81abed.zip
Merged Mikes changes again and phoenix24 fix of python2.5 problem
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 %}