{% trans "Defender points" %}
({{ passage.defender.team.trigram }}) :
{{ passage.average_defender|floatformat }}/52
{% trans "Opponent points" %}
({{ passage.opponent.team.trigram }}) :
{{ passage.average_opponent|floatformat }}/29
{% trans "Reporter points" %}
({{ passage.reporter.team.trigram }}) :
{{ passage.average_reporter|floatformat }}/19
{% endif %}
{% if notes is not None %}
{% trans "Update passage" as modal_title %}
{% trans "Update" as modal_button %}
{% url "participation:passage_update" pk=passage.pk as modal_action %}
{% include "base_modal.html" with modal_id="updatePassage" %}
{% for note in notes.data %}
{% trans "Update notes" as modal_title %}
{% trans "Update" as modal_button %}
{% url "participation:update_notes" pk=note.pk as modal_action %}
{% include "base_modal.html" with modal_id=note.modal_name %}
{% endfor %}
{% elif user.registration.participates %}
{% trans "Upload synthesis" as modal_title %}
{% trans "Upload" as modal_button %}
{% url "participation:upload_synthesis" pk=passage.pk as modal_action %}
{% include "base_modal.html" with modal_id="uploadSynthesis" modal_enctype="multipart/form-data" %}
{% endif %}
{% endblock %}
{% block extrajavascript %}
{% endblock %}