| author | rougeronj |
| Tue, 09 Jun 2015 19:10:45 +0200 | |
| changeset 146 | c6fa8ee3f562 |
| parent 96 | 3542155549e4 |
| permissions | -rw-r--r-- |
| 91 | 1 |
<div class="modal-header ng-scope"> |
| 96 | 2 |
<h3 class="modal-title">A quel Book ajouter cet element ?</h3> |
| 91 | 3 |
</div> |
4 |
||
5 |
<div class="modal-body ng-scope"> |
|
| 96 | 6 |
<ul class="row "> |
7 |
Les books de vos visites: |
|
|
146
c6fa8ee3f562
refactor idArticle to id_article and idInventory to id_inventory
rougeronj
parents:
96
diff
changeset
|
8 |
<li class="" ng-repeat="i in books | filter:{parent_visit:'!null'}:filter:{ parent_visit: 'null', id_article: 'null' }"> |
| 96 | 9 |
<div> |
10 |
<a ng-click="addToBook(i.id)">{{ i.title }}</a> |
|
11 |
</div> |
|
12 |
</li> |
|
13 |
Autres Books: |
|
|
146
c6fa8ee3f562
refactor idArticle to id_article and idInventory to id_inventory
rougeronj
parents:
96
diff
changeset
|
14 |
<li class="" ng-repeat="i in books | filter:{ parent_visit: 'null', id_article: 'null' }"> |
| 96 | 15 |
<div> |
16 |
<a ng-click="addToBook(i.id)">{{ i.title }}</a> |
|
17 |
</div> |
|
18 |
</li> |
|
19 |
</ul> |
|
| 91 | 20 |
</div> |
21 |
||
22 |
<div class="modal-footer ng-scope"> |
|
| 96 | 23 |
<button ng-click="cancel()" class="btn btn-warning">Cancel</button> |
| 91 | 24 |
</div> |