diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-07-10 19:14:09 -0400 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-07-10 19:14:09 -0400 |
commit | 5b45e526c74faf55110ff0afdcba19797d7e0f4d (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /templates/user_responses.html | |
parent | bb801f2bbd9f26bebca846b71e8947a1951f86a5 (diff) | |
download | askbot-5b45e526c74faf55110ff0afdcba19797d7e0f4d.tar.gz askbot-5b45e526c74faf55110ff0afdcba19797d7e0f4d.tar.bz2 askbot-5b45e526c74faf55110ff0afdcba19797d7e0f4d.zip |
deleted all
Diffstat (limited to 'templates/user_responses.html')
-rw-r--r-- | templates/user_responses.html | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/templates/user_responses.html b/templates/user_responses.html deleted file mode 100644 index 45aab21b..00000000 --- a/templates/user_responses.html +++ /dev/null @@ -1,23 +0,0 @@ -<!-- user_responses.html --> -{% extends "user.html" %} -{% load extra_tags %} -{% load humanize %} - -{% block usercontent %} - <div style="padding-top:5px;font-size:13px;"> - {% for response in responses %} - <div style="clear:both;line-height:18px"> - <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 "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> - </div> - - </div> - {% endfor %} - </div> -{% endblock %} -<!-- end user_responses.html --> |