{% extends "orgapy/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %}Quotes | {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block head %} {{ block.super }} {% endblock head %} {% block section %}

Quotes

{% if work %}

Filter: {{work.title}}, {{work.author.name}} Clear

{% elif author %}

Filter: {{author.name}} Clear

{% endif %} {% if authors %}

{% for author_ in authors %} {{author_.name}} {% endfor %}

{% endif %} {% if quotes %}
{% for quote in quotes %}
{{ quote.markdown | safe }}
{% endfor %}
{% else %}

No quote to be shown.

{% endif %} {% endblock section %}