summaryrefslogtreecommitdiffstats
path: root/templates/user_votes.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-11-22 21:58:06 -0500
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-11-22 21:58:06 -0500
commit76788fb1f6deebf806a0199e6183ad6a9af4096a (patch)
tree2d5d2a51e8456183606008018e49c9e71cc67c77 /templates/user_votes.html
parent46e48e400f30bde76a9b21db78f9b727149a3e24 (diff)
downloadaskbot-76788fb1f6deebf806a0199e6183ad6a9af4096a.tar.gz
askbot-76788fb1f6deebf806a0199e6183ad6a9af4096a.tar.bz2
askbot-76788fb1f6deebf806a0199e6183ad6a9af4096a.zip
fixed broken links in few places, added Arvyd's modification of user_reputation view, email sender cron job, some edits in INSTALL file
Diffstat (limited to 'templates/user_votes.html')
-rw-r--r--templates/user_votes.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/user_votes.html b/templates/user_votes.html
index 4abbf46d..b72b3ef6 100644
--- a/templates/user_votes.html
+++ b/templates/user_votes.html
@@ -1,6 +1,7 @@
{% extends "user.html" %}
<!-- user_votes.html -->
{% load extra_tags %}
+{% load extra_filters %}
{% load humanize %}
{% load i18n %}
@@ -18,9 +19,9 @@
</div>
<div style="float:left;overflow:hidden;width:750px">
{% ifequal vote.answer_id 0 %}
- <span class="question-title-link"><a href="{% url questions %}{{ vote.question_id }}/{{ vote.title }}">{{ vote.title }}</a></span>
+ <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 questions %}{{ vote.question_id }}/{{ vote.title }}#{{ vote.answer_id }}">{{ vote.title }}</a></span>
+ <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>