summaryrefslogtreecommitdiffstats
path: root/forum/templates/user_responses.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-02-10 19:52:18 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-02-10 19:52:18 -0500
commitd97cdc198952f3286c027459b4e37cc0a94361f3 (patch)
tree5c659b9acf6d3177d095374224e3c44853907e78 /forum/templates/user_responses.html
parentee38739d3b681f7d9fb61b650368d08e290a46bb (diff)
downloadaskbot-d97cdc198952f3286c027459b4e37cc0a94361f3.tar.gz
askbot-d97cdc198952f3286c027459b4e37cc0a94361f3.tar.bz2
askbot-d97cdc198952f3286c027459b4e37cc0a94361f3.zip
second take on skins - quite a bit simpler
Diffstat (limited to 'forum/templates/user_responses.html')
-rw-r--r--forum/templates/user_responses.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/forum/templates/user_responses.html b/forum/templates/user_responses.html
deleted file mode 100644
index c4f4ffed..00000000
--- a/forum/templates/user_responses.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{% extends "user.html" %}
-<!-- user_responses.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 -->