{% extends "base.html" %} {% block content %}
{{ suggestion.author.username }} suggests: | {{ suggestion.body }} | {% if get_users_voted(suggestion.id) != '' %} Voted: {{ get_users_voted(suggestion.id) }} {% endif %} | {% if current_user.username != suggestion.author.username %} {% if exists_vote(current_user.id, suggestion.id) %}{% else %} | {% endif %} {% endif %} {% if current_user.username == suggestion.author.username %} | {% endif %} |