mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
18 lines
884 B
HTML
18 lines
884 B
HTML
<h2>My Tournaments</h2>
|
|
<br>
|
|
|
|
<table class="table">
|
|
<thead class="font-spot-color">
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Date</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="tournament in allTournaments">
|
|
<td><a ng-href="/#/tournaments/{{tournament.id}}">{{ tournament.name }}</a></td>
|
|
<td>{{ tournament.date }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|