diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-01-21 17:54:10 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-01-21 17:54:10 +0100 |
| commit | 362ed9111f5fd7962d58d3ad8cdbc60e50822547 (patch) | |
| tree | 35f755fc0432d6eaeed4e4358b94678564d7b2c0 /templates/index.html | |
| parent | 5c090de74808d6166bd24320a5cee99dd81805d4 (diff) | |
| download | jokevote-362ed9111f5fd7962d58d3ad8cdbc60e50822547.tar.gz jokevote-362ed9111f5fd7962d58d3ad8cdbc60e50822547.zip | |
update template to correctly show user votes
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 4 |
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> |
