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

quote list

{% if page.has_previous %}prev{% endif %} {% if page.has_next %}{% if page.has_previous %} | {% endif %}next{% endif %}
{% comment %}{% include "quotedb/_quote.html" %}{% endcomment %} {% for quote in page %}
{% include "quotedb/_quote.html" %}
{% endfor %}
{% if page.has_previous %}prev{% endif %} {% if page.has_next %}{% if page.has_previous %} | {% endif %}next{% endif %}
{% endblock %}