{% extends 'base.html' %} {% import 'pagination.html' as pages %} {% block title %}top quotes | ~chat qdb{% endblock %} {% block pagetitle %}top quotes of all time{% endblock %} {% block content %} {{ pages.render(pagination) }} {% for quote in quotes %}
{{quote[1]}}

score: {{ quote[2] }} (upvote/downvote) (permalink)

{% endfor %} {{ pages.render(pagination) }} {% endblock %}