{% extends "funds/base_submissions_table.html" %} {% load render_table from django_tables2 %} {% load i18n %} {% block title %}{% trans "Submissions" %}{% endblock %} {% block content %} {% adminbar %} {% slot header %}{% trans "Submissions" %}{% endslot %} {% slot sub_heading %}{% trans "Track and explore recent submissions" %}{% endslot %} {% if request.user.is_apply_staff %}
{% trans "All" %} {% trans "Staff assignments" %} {% trans "Reviews" %} {% trans "Results" %}
{% endif %} {% endadminbar %}
{% include "funds/includes/status-block.html" with type="Applications" %} {% if closed_rounds or open_rounds %} {% include "funds/includes/round-block.html" with can_export=can_export closed_rounds=closed_rounds open_rounds=open_rounds title=rounds_title page_type='submission' %} {% endif %} {% block table %}
{% trans "All Submissions" as all_submissions %} {% include "funds/includes/table_filter_and_search.html" with filter_form=filter_form search_term=search_term use_search=True filter_action=filter_action search_action=search_action use_batch_actions=False heading=all_submissions show_try_new_submissions_link=True%} {% render_table table %}
{% if staff_flagged.table.data %}

{% trans "Staff Flagged Submissions" %}

{% render_table staff_flagged.table %} {% if staff_flagged.display_more %} {% endif %}
{% endif %} {% endblock %}
{% endblock %}