Blame view

public/views/membres.html 1.82 KB
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
1
2
3
  <div class="container">
      <!-- HEADER AND TODO COUNT -->
      <div class="jumbotron text-center">
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
4
          <h1>Il y a <span class="label label-info">{{ membres.length }}</span> personnes au Club Info !</h1>
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
5
      </div>
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
6
      <table id="membre-list">
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
7
8
9
10
11
12
13
14
          <thead>
              <tr>
                  <th>Nom</th>
                  <th>Section</th>
                  <th>Rôle</th>
                  <th>Action</th>
              </tr>
          </thead>
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
15
          <tbody ng-repeat="membre in membres">
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
16
              <tr>
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
17
18
19
20
                  <td>{{ membre.login }}</td>
                  <td>{{ membre.section }}</td>
                  <td>{{ membre.role }}</td>
                  <td><button type="button" class="btn btn-danger" aria-label="Expulser" ng-click="deleteMembre(membre._id)">
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
21
22
23
24
25
                      <span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
                      </button>
                  </td>
              </tr>
          </tbody>
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
26
          <tfoot id="membre-form">
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
27
28
29
30
31
32
33
34
35
36
37
          <tr class="form-group">
              <td>
                  <input type="text" class="form-control input-lg" placeholder="Login" ng-model="formData.login">
              </td>
              <td class="form-inline">
                  <input type="text" class="form-control input-lg" placeholder="Section" ng-model="formData.section"><input type="number" class="form-control input-lg" placeholder="2015" ng-model="formData.promo">
              </td>
              <td>
                  <input type="text" class="form-control input-lg" placeholder="Rôle" ng-model="formData.role">
              </td>
              <td>
4932caf3   Geoffrey PREUD'HOMME   Nettoyage et rebr...
38
                  <button type="submit" class="btn btn-primary" aria-label="Ajouter" ng-click="createMembre()">
8ae24f57   Geoffrey PREUD'HOMME   Liste des membres
39
40
41
42
43
44
45
                  <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
                  </button>
              </td>
          </tr>
          </tfoot>
      </table>
  </div>