{% extends "base.html" %} {% load i18n %} {% block extratitle %}{% blocktranslate %}Quotes from{% endblocktranslate %} {{ source.name }} - {% endblock %} {% block content %}

{% blocktranslate %}Quotes from {% endblocktranslate %} {{ source.name }}

{% for quote in page_obj %} {% empty %} {% endfor %}
{% translate "Showing" %} {{ page_obj|length }} {% translate "of" %} {{ page_obj.paginator.object_list.count }}
# {% translate "Quote" %} {% translate "Cite" %} {% translate "# Times Used" %} {% translate "Tools" %}
{{ quote.id }} {{ quote.quote_rendered|safe }} {% if quote.citation or quote.citation_url %} {% if quote.citation_url %}{% endif %}{% if quote.citation %}{{ quote.citation }}{% else %}{{ quote.citation_url }}{% endif %}{% if quote.citation_url %}{% endif %} {% endif %} {{ quote.stats.times_used }} {% translate "Edit" %} {% translate "Delete" %}
{% translate "No quotes found!" %}

{% translate "Add quote" %}

{% if page_obj.has_other_pages %} {% endif %} {% endblock %}