You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1001 B

<table>
<thead>
<th>{{ localize("scorer") }}</td>
<th>{{ localize("team") }}</th>
<th>#</th>
<th>{{ localize("period") }}</th>
<th>{{ localize("time") }}</th>
<th>{{ localize("assist") }}</th>
<th>{{ localize("assist_second") }}</th>
</thead>
<tbody>
{% for goal in goals %}
<tr>
<td>{{ goal.player_name }}</td>
<td>{{ goal.team_name }}</td>
<td>{{ goal.player_number }}</td>
<td>{{ goal.period_short_name }}</td>
<td>{{ goal.time_remaining|seconds_as_time }}</td>
<td>
{% if goal.first_assist_name.is_some() %}
{{ goal.first_assist_name.as_ref().unwrap() }}
{% else %}
unassisted
{% endif %}
</td>
<td>
{% if goal.second_assist_name.is_some() %}
{{ goal.second_assist_name.as_ref().unwrap() }}
{% else %}
N/A
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>