client/app/search/modal.html
author rougeronj
Fri, 03 Apr 2015 15:03:04 +0200
changeset 63 bd7bcfc86232
parent 54 ccb586464a6f
child 75 288fb435874e
permissions -rw-r--r--
small update in models : idUser and idArtcle are not required anymore to allow anyone to connect and add a new empty book

<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 class="visite" 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>