{% extends "orgapy/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %}Quotes ∣ {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block main_content %}

Create quote

{% 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 %}

You have no quote

Click the button below to add a quote.

Create quote
{% endif %} {% include 'orgapy/pagination.html' with paginator=quote_paginator %} {% endblock main_content %}