mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-05-18 11:08:27 +00:00
Made login form look better and made user
menu look better.
This commit is contained in:
17
frontend/app/pages/tournaments/my-tournaments.html
Normal file
17
frontend/app/pages/tournaments/my-tournaments.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user