client/app/search/modal.html
author rougeronj
Tue, 07 Apr 2015 11:55:11 +0200
changeset 72 ed2ee692ff6f
parent 54 ccb586464a6f
child 75 288fb435874e
permissions -rw-r--r--
Update PopulateVisit function to get only the new visits from Jamespot. In case the parameter "parrent_visit" is passed when creating a book, we copy all the slide corresponding to the visit being copied. Refactor PopulateVisite to PopulateVisit.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
54
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
     1
<div class="modal-header ng-scope">
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
     2
	<h3 class="modal-title">A quel Book ajouter cet element ?</h3>
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
     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
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
     5
<div class="modal-body ng-scope">
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
     6
	<ul class="row ">
54
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
     7
		<li class="" ng-repeat="i in books | orderBy:'-date'">
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
     8
			<div>
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
     9
				<a class="visite" ng-click="addToBook(i.id)">{{ i.title }}</a>
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
    10
			</div>
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
    11
		</li>
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
    12
	</ul>
54
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
    13
</div>
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
    14
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
    15
<div class="modal-footer ng-scope">
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
    16
	<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
    17
</div>