summaryrefslogtreecommitdiffstats
path: root/templates/user_votes.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-02-09 16:48:38 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-02-09 16:48:38 -0500
commit3c4c71fc19865bfb75231c425fae31c6b2c211de (patch)
tree535fc16fef76b1e89e136c3e4a0947fe8613fe01 /templates/user_votes.html
parentbdf1cc4f9dd3f0ac06ba1af3c7d35c72cc358297 (diff)
downloadaskbot-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_votes.html')
-rw-r--r--templates/user_votes.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/templates/user_votes.html b/templates/user_votes.html
deleted file mode 100644
index 94d7fcbd..00000000
--- a/templates/user_votes.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{% extends "user.html" %}
-<!-- user_votes.html -->
-{% load extra_tags %}
-{% load extra_filters %}
-{% load humanize %}
-{% load i18n %}
-
-{% block usercontent %}
- <div style="padding-top:5px;font-size:13px;">
- {% for vote in votes %}
- <div style="clear:both;line-height:20px" >
- <div style="width:150px;float:left">{% diff_date vote.voted_at 3 %}</div>
- <div style="width:30px;float:left">
- {% ifequal vote.vote 1 %}
- <img src="{% href "/content/images/vote-arrow-up-on.png" %}" title="{% trans "upvote" %}">
- {% else %}
- <img src="{% href "/content/images/vote-arrow-down-on.png" %}" title="{% trans "downvote" %}">
- {% endifequal %}
- </div>
- <div style="float:left;overflow:hidden;width:750px">
- {% ifequal vote.answer_id 0 %}
- <span class="question-title-link"><a href="{% url question vote.question_id %}{{ vote.title|slugify }}">{{ vote.title }}</a></span>
- {% else %}
- <span class="answer-title-link" ><a href="{% url question vote.question_id %}{{ vote.title|slugify }}#{{ vote.answer_id }}">{{ vote.title }}</a></span>
- {% endifequal %}
- <div style="height:5px"></div>
- </div>
- </div>
- {% endfor %}
- </div>
-{% endblock %}
-<!-- end user_votes.html -->