summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/user_stats.html
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-08-14 14:46:40 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-08-14 14:46:40 -0400
commite232a9cfcbdf3178a887aafec9c53f142e361dd6 (patch)
tree012a6e6288b15e77f3b244ebb46a6f19ac21bd5b /askbot/skins/default/templates/user_stats.html
parent855e5c03a1fa55f4d64eaf9d98fa0022399728dd (diff)
downloadaskbot-e232a9cfcbdf3178a887aafec9c53f142e361dd6.tar.gz
askbot-e232a9cfcbdf3178a887aafec9c53f142e361dd6.tar.bz2
askbot-e232a9cfcbdf3178a887aafec9c53f142e361dd6.zip
simplified media specification in templates and made a function to lookup media url at startup time - so that images could be added to live settings
Diffstat (limited to 'askbot/skins/default/templates/user_stats.html')
-rw-r--r--askbot/skins/default/templates/user_stats.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/askbot/skins/default/templates/user_stats.html b/askbot/skins/default/templates/user_stats.html
index bb7fcef4..05a629cf 100644
--- a/askbot/skins/default/templates/user_stats.html
+++ b/askbot/skins/default/templates/user_stats.html
@@ -47,12 +47,12 @@
<table>
<tr>
<td width="60">
- <img style="cursor: default;" src="{% media "/media/images/vote-arrow-up-on.png" %}" alt="{% trans "thumb up" %}" />
+ <img style="cursor: default;" src="{% media "/images/vote-arrow-up-on.png" %}" alt="{% trans "thumb up" %}" />
<span title="{% trans "user has voted up this many times" %}" class="vote-count">{{up_votes}}</span>
</td>
<td width="60">
- <img style="cursor: default;" src="{% media "/media/images/vote-arrow-down-on.png" %}" alt="{% trans "thumb down" %}" />
+ <img style="cursor: default;" src="{% media "/images/vote-arrow-down-on.png" %}" alt="{% trans "thumb down" %}" />
<span title="{% trans "user voted down this many times" %}" class="vote-count">{{down_votes}}</span>
</td>