{% extends "funds/submissions_overview.html" %} {% load static %} {% block title %}Submissions results{% endblock %} {% block content %}

Summery

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

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

Some submissions lack values and are not included.

{% endif %}
{% endblock %}