client/app/search/modal.html
author rougeronj
Wed, 08 Apr 2015 17:00:43 +0200
changeset 81 ef4d8ed6eef2
parent 75 288fb435874e
child 82 6a5e84bf859c
permissions -rw-r--r--
Adapt the html to handle a list of images sent by our Ammico API

<div class="modal-header ng-scope">
	<h3 class="modal-title">A quel Book ajouter cet element ?</h3>
</div>

<div class="modal-body ng-scope">
	<ul class="row ">
		<li class="" ng-repeat="i in books | orderBy:'-date'">
			<div>
				<a ng-click="addToBook(i.id)">{{ i.title }}</a>
			</div>
		</li>
	</ul>
</div>

<div class="modal-footer ng-scope">
	<button ng-click="cancel()" class="btn btn-warning">Cancel</button>
</div>