{% extends "orgapy/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %}Create quote | {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block main_content %}

{% block section__title %}Create quote{% endblock section__title %}

Add an author

{% csrf_token %}

Add a work

{% if authors %}
{% csrf_token %}
{% else %}

You must add at least one author to add a work.

{% endif %}

Add a quote

{% if works %}
{% csrf_token %}
{% else %}

You must add at least one work to add a quote.

{% endif %} {% endblock main_content %}