server/frontend/static/views/rank.html

19 lines
694 B
HTML
Raw Normal View History

2016-01-21 04:00:15 +00:00
<p><input type="search" class="form-control" placeholder="Rechercher" ng-model="query"></p>
<table class="table table-hover table-bordered table-striped">
<thead>
<tr>
<th ng-repeat="field in fields" ng-click="order(field)">
{{ field }}
<span class="glyphicon" ng-show="rankOrder === field" ng-class="{'glyphicon-up': !reverse, 'glyphicon-down': reverse}"></span>
</th>
</tr>
</thead>
<tbody>
2016-01-25 02:09:22 +00:00
<tr ng-repeat="team in rank | filter: query | orderBy:rankOrder:reverse" ng-click="show(team.id)" ng-show="team.rank || query">
2016-01-24 13:32:46 +00:00
<td ng-repeat="field in fields" ng-class="{info: my.team_id == team.id}">
2016-01-21 04:00:15 +00:00
{{ team[field] }}
</td>
</tr>
</tbody>
</table>