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

Top Rated Quotes

{% if quotes %} {% for quote in quotes %}
Quote #{{ quote.id }}
{{ quote.quote | safe }}
{% if quote.comment %}
{{ quote.comment }}
{% endif %}
{% endfor %} {% if total_pages > 1 %} {% endif %} {% else %}

No quotes found.

{% endif %} {% endblock %} {% block extra_js %} {% endblock %}