{% import "components.html" as components %} {% extends "communities/base.html" %} {% block content %}
{{ macros::community_nav(community=community, selected="questions") }} {% if user and can_post %}
{{ components::create_question_form(community=community.id, is_global=true) }}
{% endif %}
{{ icon "newspaper" }} {{ text "communities:label.questions" }}
{% for question in feed %} {{ components::global_question(question=question, can_manage_questions=can_manage_questions, show_community=false, secondary=true) }} {% endfor %} {{ components::pagination(page=page, items=feed|length) }}
{% endblock %}