1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-05-04 04:55:17 +00:00

Created basic viewing pages in angular

Can now search and view tournaments. Can now view team scores, weights and seeds, mats and bout board
This commit is contained in:
2016-04-12 21:11:18 +00:00
parent 8f07bc2f82
commit 5b9f64b3f9
16 changed files with 423 additions and 62 deletions

View File

@@ -1,29 +0,0 @@
<div class="col-md-8" style="padding-left: 2%;">
<div class="container" ui-view="main" ng-controller="tournamentsController">
<h2>Upcoming Tournaments</h2>
<br>
<form ng-submit="searchTournaments()">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search by name or date YYYY-MM-DD" ng-model="searchTerms">
<span class="input-group-btn">
<button class="btn btn-default" type="submit" id="submit">Search</button>
</span>
</div>
</form>
<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>{{ tournament.name }}</td>
<td>{{ tournament.date }}</td>
</tr>
</tbody>
</table>
</div>
</div>