| author | ymh <ymh.work@gmail.com> |
| Mon, 08 Jun 2015 00:29:37 +0200 | |
| changeset 126 | 5ee558e98aff |
| parent 97 | 0afdaa004ee1 |
| child 146 | c6fa8ee3f562 |
| permissions | -rw-r--r-- |
| 54 | 1 |
<div class="modal-header ng-scope"> |
| 97 | 2 |
<h3 class="modal-title">A quel Book ajouter cet element ?</h3> |
| 54 | 3 |
</div> |
|
47
dd750778535c
udate add fonction from a research and add a modal to select the book we want to add the slide
rougeronj
parents:
diff
changeset
|
4 |
|
| 54 | 5 |
<div class="modal-body ng-scope"> |
| 97 | 6 |
<ul class="row "> |
7 |
Les books de vos visites: |
|
8 |
<li class="" ng-repeat="i in books | filter:{parent_visit:'!null'}:filter:{ parent_visit: 'null', idArticle: 'null' }"> |
|
9 |
<div> |
|
10 |
<a ng-click="addToBook(i.id)">{{ i.title }}</a> |
|
11 |
</div> |
|
12 |
</li> |
|
13 |
Autres Books: |
|
14 |
<li class="" ng-repeat="i in books | filter:{ parent_visit: 'null', idArticle: 'null' }"> |
|
15 |
<div> |
|
16 |
<a ng-click="addToBook(i.id)">{{ i.title }}</a> |
|
17 |
</div> |
|
18 |
</li> |
|
19 |
</ul> |
|
| 54 | 20 |
</div> |
21 |
||
22 |
<div class="modal-footer ng-scope"> |
|
| 97 | 23 |
<button ng-click="cancel()" class="btn btn-warning">Cancel</button> |
|
47
dd750778535c
udate add fonction from a research and add a modal to select the book we want to add the slide
rougeronj
parents:
diff
changeset
|
24 |
</div> |