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

Recent

{% for quote in recent_quotes %}
{{ quote.content | safe }}
{% endfor %}
View more
{% else %}

You have no quote.

 Create quote
{% endif %} {% if authors %}

Authors

{% for author in authors %}
{{ author.name }} : {% for work in author.work_set.all %}{% if not forloop.first %}, {% endif %}{{ work.title }}{% endfor %}
{% endfor %}
{% endif %} {% if random_quotes %}

Random

{% for quote in random_quotes %}
{{ quote.content | safe }}
{% endfor %}
View more
{% endif %} {% endblock main_content %} {% block body_scripts %} {{ block.super }} {% endblock body_scripts %}