From 362ed9111f5fd7962d58d3ad8cdbc60e50822547 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 21 Jan 2017 17:54:10 +0100 Subject: update template to correctly show user votes --- templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'templates/index.html') diff --git a/templates/index.html b/templates/index.html index b884c57..137f3e9 100644 --- a/templates/index.html +++ b/templates/index.html @@ -117,12 +117,12 @@ {{ joke.score }} {% if joke.downvoted %} - {% if user.loggedin %}-10{% else %}-1{% endif %} + {% if user.loggedin %}-3{% else %}-1{% endif %} {% endif %} {% if joke.upvoted %} - {% if user.loggedin %}+10{% else %}+1{% endif %} + {% if user.loggedin %}+3{% else %}+1{% endif %} {% endif %} -- cgit v1.3.1