{% trans "Average points for the observer oral:" %}
{{ passage.average_observer|floatformat }}/4
{% endif %}
{% trans "Defender points:" %}
{{ passage.average_defender|floatformat }}/52
{% trans "Opponent points:" %}
{{ passage.average_opponent|floatformat }}/29
{% trans "Reporter points:" %}
{{ passage.average_reporter|floatformat }}/19
{% if passage.observer %}
{% trans "Observer points:" %}
{{ passage.average_observer|floatformat }}/4
{% endif %}
{% 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" %}
{% if my_note is not None %}
{% trans "Update notes" as modal_title %}
{% trans "Update" as modal_button %}
{% url "participation:update_notes" pk=my_note.pk as modal_action %}
{% include "base_modal.html" with modal_id="updateNotes" %}
{% endif %}
{% 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 %}