{% extends "root.html" %} {% block head %} Question - {{ config.name }} {% endblock %} {% block body %} {{ macros::nav() }}
{{ components::question(question=question, owner=owner) }}
{% if user and (user.id == question.receiver or question.is_global) and not has_answered %}
{{ icon "square-pen" }} {{ text "requests:label.answer" }}
{% endif %}
{{ icon "newspaper" }} {{ text "communities:label.replies" }}
{% for post in replies %} {{ components::post(post=post[0], owner=post[1], question=false, secondary=true, show_community=false) }} {% endfor %} {{ components::pagination(page=page, items=replies|length) }}
{% endblock %}