client/app/search/modal.html
author rougeronj
Fri, 22 May 2015 12:37:37 +0200
changeset 90 faf2cdb47813
parent 84 57a60c21a059
child 97 0afdaa004ee1
permissions -rw-r--r--
remove "comment" from the model. Copy the 'comment' field of Jamespot in the 'description' field of the model instead
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 ">
84
57a60c21a059 show books without parents and idArticle (books created from scratch)
rougeronj
parents: 82
diff changeset
     7
		Les books de vos visites:
57a60c21a059 show books without parents and idArticle (books created from scratch)
rougeronj
parents: 82
diff changeset
     8
		<li class="" ng-repeat="i in books | filter:{parent_visit:'!null'}:filter:{ parent_visit: 'null', idArticle: 'null' }">
57a60c21a059 show books without parents and idArticle (books created from scratch)
rougeronj
parents: 82
diff changeset
     9
			<div>
57a60c21a059 show books without parents and idArticle (books created from scratch)
rougeronj
parents: 82
diff changeset
    10
				<a ng-click="addToBook(i.id)">{{ i.title }}</a>
57a60c21a059 show books without parents and idArticle (books created from scratch)
rougeronj
parents: 82
diff changeset
    11
			</div>
57a60c21a059 show books without parents and idArticle (books created from scratch)
rougeronj
parents: 82
diff changeset
    12
		</li>
57a60c21a059 show books without parents and idArticle (books created from scratch)
rougeronj
parents: 82
diff changeset
    13
		Autres Books:
57a60c21a059 show books without parents and idArticle (books created from scratch)
rougeronj
parents: 82
diff changeset
    14
		<li class="" ng-repeat="i in books | filter:{ parent_visit: 'null', idArticle: 'null' }">
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
    15
			<div>
75
288fb435874e Render parent books, child books, and other books separately - minor clean in modal.html
rougeronj
parents: 54
diff changeset
    16
				<a ng-click="addToBook(i.id)">{{ i.title }}</a>
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>
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
    18
		</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
    19
	</ul>
54
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
    20
</div>
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
    21
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
    22
<div class="modal-footer ng-scope">
ccb586464a6f clean js and minor update in html and css
rougeronj
parents: 47
diff changeset
    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>