client/app/visites/add_book_modal.html
author rougeronj
Wed, 27 May 2015 18:58:39 +0200
changeset 96 3542155549e4
parent 91 f7a844a9079e
child 146 c6fa8ee3f562
permissions -rw-r--r--
replace all the tab by spaces
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
91
f7a844a9079e merge the changes of Camille
rougeronj
parents:
diff changeset
     1
<div class="modal-header ng-scope">
96
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
     2
    <h3 class="modal-title">A quel Book ajouter cet element ?</h3>
91
f7a844a9079e merge the changes of Camille
rougeronj
parents:
diff changeset
     3
</div>
f7a844a9079e merge the changes of Camille
rougeronj
parents:
diff changeset
     4
f7a844a9079e merge the changes of Camille
rougeronj
parents:
diff changeset
     5
<div class="modal-body ng-scope">
96
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
     6
    <ul class="row ">
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
     7
        Les books de vos visites:
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
     8
        <li class="" ng-repeat="i in books | filter:{parent_visit:'!null'}:filter:{ parent_visit: 'null', idArticle: 'null' }">
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
     9
            <div>
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    10
                <a ng-click="addToBook(i.id)">{{ i.title }}</a>
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    11
            </div>
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    12
        </li>
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    13
        Autres Books:
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    14
        <li class="" ng-repeat="i in books | filter:{ parent_visit: 'null', idArticle: 'null' }">
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    15
            <div>
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    16
                <a ng-click="addToBook(i.id)">{{ i.title }}</a>
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    17
            </div>
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    18
        </li>
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    19
    </ul>
91
f7a844a9079e merge the changes of Camille
rougeronj
parents:
diff changeset
    20
</div>
f7a844a9079e merge the changes of Camille
rougeronj
parents:
diff changeset
    21
f7a844a9079e merge the changes of Camille
rougeronj
parents:
diff changeset
    22
<div class="modal-footer ng-scope">
96
3542155549e4 replace all the tab by spaces
rougeronj
parents: 91
diff changeset
    23
    <button ng-click="cancel()" class="btn btn-warning">Cancel</button>
91
f7a844a9079e merge the changes of Camille
rougeronj
parents:
diff changeset
    24
</div>