summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/index.html4
1 files changed, 2 insertions, 2 deletions
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 @@
<span>{{ joke.score }}</span>
{% if joke.downvoted %}
<small class="red-text">
- {% if user.loggedin %}-10{% else %}-1{% endif %}
+ {% if user.loggedin %}-3{% else %}-1{% endif %}
</small>
{% endif %}
{% if joke.upvoted %}
<small class="green-text">
- {% if user.loggedin %}+10{% else %}+1{% endif %}
+ {% if user.loggedin %}+3{% else %}+1{% endif %}
</small>
{% endif %}
</div>