{% 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 %} Goal {% else %} 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 %} unassisted {% endif %} {% else %} N/A {% endif %} {% if shot.second_assist_name.is_some() %} {{ shot.second_assist_name.as_ref().unwrap() }} {% else %} N/A {% endif %}