summaryrefslogtreecommitdiffstats
path: root/templates/user_responses.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-10 19:11:34 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-07-10 19:11:34 -0400
commitbb801f2bbd9f26bebca846b71e8947a1951f86a5 (patch)
treecd4f7417cdbabc6834aeb45f73f09208a738ac2d /templates/user_responses.html
parentd3b7efc1eba6f38fba8d5110c7155f477d1459e6 (diff)
downloadaskbot-bb801f2bbd9f26bebca846b71e8947a1951f86a5.tar.gz
askbot-bb801f2bbd9f26bebca846b71e8947a1951f86a5.tar.bz2
askbot-bb801f2bbd9f26bebca846b71e8947a1951f86a5.zip
english translation
Diffstat (limited to 'templates/user_responses.html')
-rw-r--r--templates/user_responses.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/user_responses.html b/templates/user_responses.html
index 0ada494c..45aab21b 100644
--- a/templates/user_responses.html
+++ b/templates/user_responses.html
@@ -1,3 +1,4 @@
+<!-- user_responses.html -->
{% extends "user.html" %}
{% load extra_tags %}
{% load humanize %}
@@ -9,7 +10,7 @@
<div style="width:150px;float:left">{% diff_date response.time 3 %}</div>
<div style="width:100px;float:left"><a href="{{ response.userlink }}">{{ response.username }}</a></div>
<div style="float:left;overflow:hidden;width:680px">
- <strong {% ifequal response.type "回答问题"%}class="user-action-2"{% endifequal %}{% ifequal response.type "最佳答案"%}class="user-action-8"{% endifequal %}>{{ response.type }}</strong>:
+ <strong {% ifequal response.type "question_answered" %}class="user-action-2"{% endifequal %}{% ifequal response.type "answer_accepted" %}class="user-action-8"{% endifequal %}>{{ response.type }}</strong>:
<a href="{{ response.titlelink }}">{{ response.title }}</a><br>
{{ response.content|safe }}
<div style="height:10px"></div>
@@ -18,4 +19,5 @@
</div>
{% endfor %}
</div>
-{% endblock %} \ No newline at end of file
+{% endblock %}
+<!-- end user_responses.html -->