{% extends "root.html" %} {% block head %} Requests - {{ config.name }} {% endblock %} {% block body %} {{ macros::nav(selected="requests") }}
{{ icon "inbox" }} {{ text "requests:label.requests" }}
{% for request in requests %} {% if request.action_type == "CommunityJoin" %}
{{ icon "user-plus" }} {{ text "requests:label.community_join_request" }}
{{ icon "external-link" }} {{ text "requests:label.review" }}
{% elif request.action_type == "Follow" %}
{{ icon "user-plus" }} {{ text "requests:label.user_follow_request" }}
{{ text "requests:label.user_follow_request_message" }}
{{ icon "external-link" }} {{ text "requests:action.view_profile" }}
{% endif %} {% endfor %} {% for question in questions %}
{{ components::question(question=question[0], owner=question[1]) }}
{{ components::emoji_picker(element_id="content", render_dialog=true) }} {% if is_supporter %} {{ components::file_picker(files_list_id="files_list") }} {% endif %}
{% endfor %}
{% endblock %}