Files
benchcoach/src/views/opponent/list.hbs
2024-03-04 13:32:25 -06:00

14 lines
304 B
Handlebars

<h1>
{{title}}
</h1>
<div class="Panel">
<div class="Panel-body">
{{#each opponents}}
<div class="Panel-row Panel-row--withCells u-textDecorationNone">
<a class="Panel-cell" href="opponent/{{this.id}}">
{{this.name}}
</a>
</div>
{{/each}}
</div>
</div>