server/admin/static/views/team-print.html

39 lines
879 B
HTML
Raw Normal View History

<h2 ng-controller="SettingsController">{{ config.title }} &ndash; &Eacute;quipes</h2>
2018-01-07 23:41:23 +00:00
<p class="hidden-print"><input type="search" class="form-control" placeholder="Search" ng-model="query" autofocus></p>
<table class="table table-hover table-bordered">
<thead>
<tr>
2017-11-10 19:25:07 +00:00
<th>
ID
</th>
<th>
Nom d'équipe
</th>
<th>
members
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="team in teams | filter: query" ng-click="show(team.id)">
2017-11-10 19:25:07 +00:00
<td>
{{ team.id }}
</td>
<td>
{{ team.name }}
</td>
2018-06-24 16:19:19 +00:00
<td ng-controller="TeamMembersController" class="p-0">
<table class="table table-hover table-sm bg-light m-0">
<tr class="row" ng-repeat="member in members">
<td class="col-sm-3" ng-repeat="field in fields">
{{ member[field] }}
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>