8ae24f57
Geoffrey PREUD'HOMME
Liste des membres
|
1
|
<div class="container">
|
8ae24f57
Geoffrey PREUD'HOMME
Liste des membres
|
2
|
<div class="jumbotron text-center">
|
2f593328
Geoffrey PREUD'HOMME
Linting
|
3
|
<h1>Il y a
|
3597886c
Geoffrey PREUD'HOMME
Pluriel conditionel
|
4
|
<span id="membre-qt" class="label label-info">{{ membres.length }}</span> personne{{membres.length >= 2 ? 's' : ''}} au Club Info !</h1>
|
de18ba02
Geoffrey PREUD'HOMME
Bôté
|
5
|
<p>Mais avec toi, ça serait encore plus sympa !</p>
|
8ae24f57
Geoffrey PREUD'HOMME
Liste des membres
|
6
|
</div>
|
55a10789
Geoffrey PREUD'HOMME
Meilleure navbar
|
7
|
<table class="table table-striped table-hover">
|
8ae24f57
Geoffrey PREUD'HOMME
Liste des membres
|
8
9
10
11
12
|
<thead>
<tr>
<th>Nom</th>
<th>Section</th>
<th>Rôle</th>
|
69695d81
Geoffrey PREUD'HOMME
Serveur: Vérifica...
|
13
|
<th ng-if="session.canAddMembre || session.canDelMembre">Action</th>
|
8ae24f57
Geoffrey PREUD'HOMME
Liste des membres
|
14
15
|
</tr>
</thead>
|
4932caf3
Geoffrey PREUD'HOMME
Nettoyage et rebr...
|
16
|
<tbody ng-repeat="membre in membres">
|
8ae24f57
Geoffrey PREUD'HOMME
Liste des membres
|
17
|
<tr>
|
bc6e4c53
Geoffrey PREUD'HOMME
Affichage des nom...
|
18
|
<td>{{ membre.nom }}</td>
|
4932caf3
Geoffrey PREUD'HOMME
Nettoyage et rebr...
|
19
20
|
<td>{{ membre.section }}</td>
<td>{{ membre.role }}</td>
|
2f593328
Geoffrey PREUD'HOMME
Linting
|
21
|
<td ng-if="session.canDelMembre">
|
f661af15
Geoffrey PREUD'HOMME
Amelioré la gesti...
|
22
|
<button type="button" class="btn btn-danger" aria-label="Expulser" ng-click="deleteMembre($index)">
|
2f593328
Geoffrey PREUD'HOMME
Linting
|
23
|
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
|
8ae24f57
Geoffrey PREUD'HOMME
Liste des membres
|
24
25
26
27
|
</button>
</td>
</tr>
</tbody>
|
69695d81
Geoffrey PREUD'HOMME
Serveur: Vérifica...
|
28
|
<tfoot id="membre-form" ng-if="session.canAddMembre">
|
2f593328
Geoffrey PREUD'HOMME
Linting
|
29
30
|
<tr class="form-group">
<td>
|
e4fff96c
Geoffrey PREUD'HOMME
Récupération des ...
|
31
|
<input type="text" class="form-control input-lg" placeholder="Login Polytech" ng-model="formData.login">
|
2f593328
Geoffrey PREUD'HOMME
Linting
|
32
|
</td>
|
e4fff96c
Geoffrey PREUD'HOMME
Récupération des ...
|
33
|
<td>
|
2f593328
Geoffrey PREUD'HOMME
Linting
|
34
35
36
37
38
39
40
41
42
43
|
</td>
<td>
<input type="text" class="form-control input-lg" placeholder="Rôle" ng-model="formData.role">
</td>
<td>
<button type="submit" class="btn btn-primary" aria-label="Ajouter" ng-click="createMembre()">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
</button>
</td>
</tr>
|
8ae24f57
Geoffrey PREUD'HOMME
Liste des membres
|
44
45
|
</tfoot>
</table>
|
3597886c
Geoffrey PREUD'HOMME
Pluriel conditionel
|
46
|
</div>
|