{% extends "funds/base_submissions_table.html" %} {% load render_table from django_tables2 %} {% load i18n %} {% block title %}{% trans "Submissions" %}{% endblock %} {% block content %}
{% include "funds/includes/status-block.html" with type="Applications" %} {% if closed_rounds or open_rounds %} {% include "funds/includes/round-block.html" with closed_rounds=closed_rounds open_rounds=open_rounds title=rounds_title page_type='submission' %} {% endif %} {% block table %}
{% include "funds/includes/table_filter_and_search.html" with filter_form=filter_form search_term=search_term use_search=True filter_action=filter_action use_batch_actions=False heading="All Submissions" %} {% 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 %}