{% extends "root.html" %} {% block head %} Post quotes - {{ config.name }} {% endblock %} {% block body %} {{ macros::nav() }}
{% if post.replying_to -%} {{ icon "arrow-up" }} {{ text "communities:action.continue_thread" }} {%- endif %}
{% if post.context.repost and post.context.repost.reposting -%} {{ components::repost(repost=reposting, post=post, owner=owner, community=community, show_community=true, can_manage_post=can_manage_posts) }} {% else %} {{ components::post(post=post, owner=owner, question=question, community=community, show_community=true, can_manage_post=can_manage_posts) }} {%- endif %}
{{ icon "newspaper" }} {{ text "communities:label.replies" }} {{ icon "repeat-2" }} {{ text "communities:label.reposts" }} {{ icon "quote" }} {{ text "communities:label.quotes" }}
{% if (user and user.id == post.owner) or can_manage_posts -%}
{% if user and user.id == post.owner -%} {{ icon "pen" }} {{ text "communities:label.edit_content" }} {%- endif %} {{ icon "heart" }} {{ text "communities:label.likes" }} {{ icon "settings" }} {{ text "communities:action.configure" }}
{%- endif %}
{{ icon "heart" }} {{ text "communities:label.likes" }}
{% for tu in list %} {% set reaction = tu[0] %} {% set user = tu[1] %}
{{ components::user_plate(user=user, secondary=true) }}
{% endfor %} {{ components::pagination(page=page, items=list|length) }}
{% endblock %}