{% if quotes %}
{% for quote in quotes %}
{% if quote.avatar_url %} {{ quote.sender }} {% elif quote.avatar_data %} {{ quote.sender }} {% else %}
ID
{% endif %}
"{{ quote.content }}"
-- {{ quote.sender }}
// Reason: {{ quote.reason }}
{% endfor %}
{% endif %}