{% extends base_template %} {% load i18n static %} {% load querystrings heroicons %} {% load humanize %} {% block title %}{% trans "Submissions" %}{% endblock %} {% block content %}{% spaceless %} {% adminbar %} {% slot header %} {% trans "All Submissions" %} ({{ page.paginator.count }}) {% trans "View older version" %} {% endslot %} {% endadminbar %}
{% for key, value in request.GET.items %} {% if key != 'archived' %}{% endif %} {% endfor %} {% dropdown_menu title="Filters" heading="Filter submissions" %} {% if request.GET.query == "lead:@me" %} {% heroicon_mini "check" aria_hidden="true" size=16 class="stroke-2 me-1" %} {% endif %} {% trans "Your assigned submissions" %} {{ request.GET.lead }} {% if request.GET.query == "flagged:@me" %} {% heroicon_mini "check" aria_hidden="true" size=16 class="stroke-2 me-1" %} {% endif %} {% trans "Your flagged submissions" %} {% if request.GET.query == "reviewer:@me" %} {% heroicon_mini "check" aria_hidden="true" size=16 class="stroke-2 me-1" %} {% endif %} {% trans "Awaiting your review" %} {% enddropdown_menu %} {% if can_view_archive %} {% endif %}
{% if is_filtered %} {% comment %} Display option to clear all the filters {% endcomment %}
{% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove all filters {% if selected_statuses %} status:{% for s in selected_statuses %}{{ s }}{% endfor %} {% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove Status Filter {% endif %} {% if selected_fund_objects %} fund:{% for s in selected_fund_objects %}"{{ s }}"{% endfor %} {% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove Fund Filter {% endif %} {% if selected_round_objects %} round:{% for s in selected_round_objects %}"{{ s }}"{% endfor %} {% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove Round Filter {% endif %} {% if selected_leads %} Lead:{% for s in selected_leads %}{{ s }}{% endfor %} {% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove Leads Filter {% endif %} {% if selected_applicants %} Applicant:{% for s in selected_applicants %}{{ s }}{% endfor %} {% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove Applicant Filter {% endif %} {% for s in selected_reviewers %} Reviewer:{{ s }} {% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove Reviewer filter {% endfor %} {% for s in selected_meta_terms %} Meta Term:{{ s }} {% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove Meta Term filter {% endfor %} {% for s in selected_category_options %} Category:{{ s }} {% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove category filter {% endfor %} {% for s in selected_screening_statuses_objects %} screening:"{{ s.title }}" {% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove screening decisions filter {% endfor %} {% if selected_sort %} sort:{{ selected_sort }} {% heroicon_mini "x-mark" aria_hidden="true" fill="currentColor" %} Remove Sort filter {% endif %}
{% endif %}
{% dropdown_menu title="Status" heading="Update Status" enable_search=True %} {% slot "url" hx-include="[name='selectedSubmissionIds']" hx-trigger="mouseover, focus" %}{% url "apply:submissions:submenu-update-status" %}{% endslot %} {% enddropdown_menu %} {% dropdown_menu title="Lead" heading="Assign Lead" enable_search=True position="right" %} {% slot "url" %}{% url "apply:submissions:submenu-bulk-update-lead" %}{% remove_from_query "only_query_string" "page" %}{% endslot %} {% enddropdown_menu %} {% dropdown_menu title="Reviewers" heading="Assign Reviewer(s)" position="right" %} {% slot "url" hx-include="[name='selectedSubmissionIds']" hx-trigger="click" %}{% url "apply:submissions:submenu-bulk-update-reviewers" %}{% remove_from_query "only_query_string" "page" %}{% endslot %} {% enddropdown_menu %} {% if can_bulk_archive %} {% endif %} {% if can_bulk_delete %} {% endif %}
{% comment %} Load reviews using htmx multi-swap extension, the reviewers for all the submission on the page are fetched after the pages is loaded {% endcomment %}
{% for s in submissions %} {% include "funds/includes/submission-list-item.html" with s=s %} {% empty %}

No results matched your search

Try clearing the current query and try again.

{% endfor %}
{% endspaceless %}{% endblock content %} {% block extra_js %} {% endblock %}