{% for shot in shots %} {% endfor %}
{{ localize("shooter") }} {{ localize("team") }} # {{ localize("type") }} {{ localize("period") }} {{ localize("time") }} {{ localize("assist") }} {{ localize("assist_second") }}
{{ shot.player_name }} {{ shot.team_name }} {{ shot.player_number }} {% if shot.is_goal %} {{ localize("goal") }} {% else %} {{ localize("shot") }} {% endif %} {{ shot.period_short_name }} {{ shot.time_remaining|seconds_as_time }} {% if shot.is_goal %} {% if shot.first_assist_name.is_some() %} {{ shot.first_assist_name.as_ref().unwrap() }} {% else %} {{ localize("unassisted") }} {% endif %} {% else %} {{ localize("not-applicable") }} {% endif %} {% if shot.second_assist_name.is_some() %} {{ shot.second_assist_name.as_ref().unwrap() }} {% else %} {{ localize("not-applicable") }} {% endif %}