{% extends "funds/submissions_overview.html" %} {% load i18n static apply_tags %} {% block title %}{% trans "Submissions results" %}{% endblock %} {% block content %} {% adminbar %} {% slot header %}{% trans "Submissions results" %}{% endslot %} {% slot sub_heading %}{% trans "Track and explore submission results" %}{% endslot %} {% endadminbar %}

{% trans "Summary" %}

{% include "funds/includes/submission_stats.html" %}

{% trans "Filter submissions to calculate values" %}

{% 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 filter_classes="filters-open" %}
{% trans "Number of submission" %}: {{ count_values }}{% if not count_values == object_list.count %} ({{ object_list.count }}){% endif %}
{% trans "Average value" %}: {{ average_value|format_number_as_currency }}
{% trans "Total value" %}: {{ total_value|format_number_as_currency }}
{% if not count_values == object_list.count %}

{% trans "Some submissions lack values and are not included." %}

{% endif %}
{% endblock %}