summaryrefslogtreecommitdiffstats
path: root/templates/user_stats.html
diff options
context:
space:
mode:
authorBruno Sarlo <bruno@bruno-laptop.(none)>2009-08-09 23:52:33 -0300
committerBruno Sarlo <bruno@bruno-laptop.(none)>2009-08-09 23:52:33 -0300
commit2d1e60db89453f2c12132d657551090c7ea92506 (patch)
tree979ccea6ec95c87c06c824d35fb2371b7ffc1ee3 /templates/user_stats.html
parent039f563c62bf800304b621af490a8a4b071e5af6 (diff)
downloadaskbot-2d1e60db89453f2c12132d657551090c7ea92506.tar.gz
askbot-2d1e60db89453f2c12132d657551090c7ea92506.tar.bz2
askbot-2d1e60db89453f2c12132d657551090c7ea92506.zip
Included i18n for links site-wide. Hope there is no bit left.
Diffstat (limited to 'templates/user_stats.html')
-rw-r--r--templates/user_stats.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/user_stats.html b/templates/user_stats.html
index 432a5b34..41253494 100644
--- a/templates/user_stats.html
+++ b/templates/user_stats.html
@@ -32,14 +32,14 @@
<div class="user-stats-table">
{% for answered_question in answered_questions %}
<div class="answer-summary">
- <a title="{{answered_question.summary}}" href="/questions/{{answered_question.id}}/{{answered_question.title}}#{{answered_question.answer_id}}">
+ <a title="{{answered_question.summary}}" href="{% url questions %}{{answered_question.id}}/{{answered_question.title}}#{{answered_question.answer_id}}">
<div class="answer-votes {% if answered_question.accepted %}answered-accepted{% endif %}"
title="{% blocktrans with answered_question.vote_count as vote_count %}the answer has been voted for {{ vote_count }} times{% endblocktrans %}&#13;{% if answered_question.accepted %}{% trans "this answer has been selected as correct" %}{%endif%}">
{{ answered_question.vote_count }}
</div>
</a>
<div class="answer-link">
- <a href="/questions/{{answered_question.id}}/{{answered_question.title}}#{{answered_question.answer_id}}">{{answered_question.title}}</a> {% if answered_question.comment_count %}<span
+ <a href="{% url questions %}{{answered_question.id}}/{{answered_question.title}}#{{answered_question.answer_id}}">{{answered_question.title}}</a> {% if answered_question.comment_count %}<span
title="{% blocktrans %}the answer has been commented {{ answered_question.comment_count }} times{% endblocktrans %}">({{answered_question.comment_count}})</span>{% endif %}
</div>
</div>