{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}:

{% if quotes|length == 0 %}

No quotes~!

{% endif %} {% for quote in quotes %}
#{{ quote.id }} {% if quote.user_score < 1 %} Up↑ {% else %} Up↑ {% endif %} {{ quote.score}} / {{ quote.votes }} {% if quote.user_score > -1 %} Down↓ {% else %} Down↓ {% endif %} {{ quote.date }} {% if admin %} approve delete {% endif %}

{{ quote.text|safe }}

{% endfor %} {% endblock %}