Blame view

public/views/membres.html 2.25 KB
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>
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
13
                  <th ng-show="session.canAddMembre || session.canDelMembre">Action</th>
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
14
15
              </tr>
          </thead>
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
16
17
          <tbody as-sortable="dragControlListeners" ng-model="membres">
              <tr ng-repeat="membre in membres" as-sortable-item ng-class="{bureau: membre.bureau}">
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>
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
21
                  <td ng-show="session.canDelMembre">
a9a5cb2a   Geoffrey PREUD'HOMME   Possibilité clien...
22
23
24
                      <button type="button" class="btn btn-default" aria-label="Déplacer" data-as-sortable-item-handle>
                          <span class="glyphicon glyphicon-resize-vertical" aria-hidden="true"></span>
                      </button>
f661af15   Geoffrey PREUD'HOMME   Amelioré la gesti...
25
                      <button type="button" class="btn btn-danger" aria-label="Expulser" ng-click="deleteMembre($index)">
2f593328   Geoffrey PREUD'HOMME   Linting
26
                          <span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
27
28
29
30
                      </button>
                  </td>
              </tr>
          </tbody>
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
31
          <tfoot id="membre-form" ng-show="session.canAddMembre">
2f593328   Geoffrey PREUD'HOMME   Linting
32
33
              <tr class="form-group">
                  <td>
e4fff96c   Geoffrey PREUD'HOMME   Récupération des ...
34
                      <input type="text" class="form-control input-lg" placeholder="Login Polytech" ng-model="formData.login">
2f593328   Geoffrey PREUD'HOMME   Linting
35
                  </td>
e4fff96c   Geoffrey PREUD'HOMME   Récupération des ...
36
                  <td>
2f593328   Geoffrey PREUD'HOMME   Linting
37
38
39
40
41
42
43
44
45
46
                  </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
47
48
          </tfoot>
      </table>
7dd1a01d   Geoffrey PREUD'HOMME   Corrigé incohéren...
49
  </div>