{% extends "funds/base_submissions_table.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" %}
{% trans "Amounts" %}
{% trans "Applied" %} ({% get_currency_symbol %}) | {% trans "Accepted" %} ({% get_currency_symbol %}) |
{{ submission_sum|default:"0"|format_number_as_currency }} | {{ submission_accepted_sum|default:"0"|format_number_as_currency }} |
{% trans "Submissions" %}
{% trans "Applied" %} |
{% trans "Accepted" %} |
{% trans "Pending" %} |
{{ object_list.count }} |
{{ submission_accepted_count|default:"0" }} |
{{ submission_undetermined_count|default:"0" }} |
{% trans "Reviews" %}
{% trans "All" %} |
{% trans "You" %} |
{% trans "Your avg. score" %} |
{{ review_count|default:"0" }} | {{ review_my_count|default:"0" }} | {{ review_my_score|floatformat:"0"|default:"0" }} |
{% trans "Submission value totals" %}
{% include "funds/includes/table_filter_and_search.html" with filter_form=filter_form search_term=search_term filter_action=filter_action use_batch_actions=False filter_classes="filters-open" %}
{% trans "Number of submissions" %}: {{ count_values }}{% if not count_values == 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 %}
{% with object_list.count|subtract:count_values as count_diff %}
{% blocktrans %}*{{ count_diff }} submission(s) lack requested amount fields or data and are not included.{% endblocktrans %}
{% endwith %}
{% endif %}
{% endblock %}