Blame view

public/views/forumConv.html 1.92 KB
9378de0d   Geoffrey PREUD'HOMME   Affichage d'une c...
1
2
  <div class="container">
      <ol class="breadcrumb">
61d4f326   Geoffrey PREUD'HOMME   Gestion des dossiers
3
          <li><a href="/forum">Forum</a></li>
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
4
5
          <li><a href="#">Conversations</a></li>
          <li class="active">{{ conv.titre }}</li>
9378de0d   Geoffrey PREUD'HOMME   Affichage d'une c...
6
7
      </ol>
      <h1>{{ conv.titre }}</h1>
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
8
9
10
11
12
13
14
      <div class="panel panel-default" ng-repeat="mess in messs">
          <div class="panel-heading">
              {{ mess.login }}
              <button ng-if="session.canDelMess" type="button" class="btn btn-danger" ng-click="deleteMess($index)">
                  <span class="glyphicon glyphicon-remove" aria-hidden="true"></span> Supprimer
              </button>
          </div>
9fbacb17   Geoffrey PREUD'HOMME   Affichage du Mark...
15
          <div class="panel-body" btf-markdown="mess.content">
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
          </div>
      </div>
      <div class="form-group" ng-if="session.canAddMess">
          <div class="panel panel-default">
              <div class="panel-heading">
                  <h4 class="panel-title">
                      Nouveau message
                  </h4>
              </div>
              <div class="panel-body">
                  <textarea class="form-control" rows="3" ng-model="formData.content"></textarea>
                  <button type="submit" class="btn btn-primary" aria-label="Ajouter" ng-click="createMess()">
                      <span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Ajouter
                  </button>
              </div>
          </div>
      </div>
61d4f326   Geoffrey PREUD'HOMME   Gestion des dossiers
33
      <!-- <nav>
9378de0d   Geoffrey PREUD'HOMME   Affichage d'une c...
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
          <ul class="pagination">
              <li>
                  <a href="#" aria-label="Previous">
                      <span aria-hidden="true">&laquo;</span>
                  </a>
              </li>
              <li><a href="#">1</a></li>
              <li><a href="#">2</a></li>
              <li><a href="#">3</a></li>
              <li><a href="#">4</a></li>
              <li><a href="#">5</a></li>
              <li>
                  <a href="#" aria-label="Next">
                      <span aria-hidden="true">&raquo;</span>
                  </a>
              </li>
          </ul>
61d4f326   Geoffrey PREUD'HOMME   Gestion des dossiers
51
      </nav> -->
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
52
  </div>