{% 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]) }}
{% endfor %}
{% endblock %}