diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-02-09 16:48:38 -0500 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-02-09 16:48:38 -0500 |
commit | 3c4c71fc19865bfb75231c425fae31c6b2c211de (patch) | |
tree | 535fc16fef76b1e89e136c3e4a0947fe8613fe01 /templates/user_responses.html | |
parent | bdf1cc4f9dd3f0ac06ba1af3c7d35c72cc358297 (diff) | |
download | askbot-3c4c71fc19865bfb75231c425fae31c6b2c211de.tar.gz askbot-3c4c71fc19865bfb75231c425fae31c6b2c211de.tar.bz2 askbot-3c4c71fc19865bfb75231c425fae31c6b2c211de.zip |
started working towards skinning forum app - first step - move templates to app
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 c4f4ffed..00000000 --- a/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 --> |