2017-12-17 15:07:04 +00:00
|
|
|
<h2>
|
|
|
|
Événements
|
2018-11-18 20:34:08 +00:00
|
|
|
<button type="button" ng-click="clearEvents()" class="float-right btn btn-sm btn-danger"><span class="glyphicon glyphicon-remove-sign" aria-hidden="true"></span> Vider la liste</button>
|
|
|
|
<button type="button" ng-click="show('new')" class="float-right btn btn-sm btn-primary mr-2"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Ajouter un événement</button>
|
2017-12-17 15:07:04 +00:00
|
|
|
</h2>
|
2016-12-26 02:44:04 +00:00
|
|
|
|
2018-01-07 23:41:23 +00:00
|
|
|
<p><input type="search" class="form-control" placeholder="Search" ng-model="query" autofocus></p>
|
2017-12-17 15:07:04 +00:00
|
|
|
<table class="table table-hover table-bordered table-striped table-sm">
|
|
|
|
<thead class="thead-dark">
|
2016-12-26 02:44:04 +00:00
|
|
|
<tr>
|
|
|
|
<th ng-repeat="field in fields">
|
|
|
|
{{ field }}
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr ng-repeat="event in events | filter: query" ng-click="show(event.id)">
|
|
|
|
<td ng-repeat="field in fields">
|
|
|
|
{{ event[field] }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|