client/app/books/books.html
author rougeronj
Wed, 25 Mar 2015 15:55:38 +0100
changeset 39 b714bcbe915c
parent 24 21ecbde9e080
child 53 dac1df90b49e
permissions -rw-r--r--
update slideshow template
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24
21ecbde9e080 add books controller to handle list of books
rougeronj
parents:
diff changeset
     1
<p>Liste des books&nbsp;:</p>
21ecbde9e080 add books controller to handle list of books
rougeronj
parents:
diff changeset
     2
21ecbde9e080 add books controller to handle list of books
rougeronj
parents:
diff changeset
     3
<ul class="row ">
21ecbde9e080 add books controller to handle list of books
rougeronj
parents:
diff changeset
     4
  <li class="" ng-repeat="i in books">
21ecbde9e080 add books controller to handle list of books
rougeronj
parents:
diff changeset
     5
    <div>
21ecbde9e080 add books controller to handle list of books
rougeronj
parents:
diff changeset
     6
       <a class="visite" href="#/books/{{ i.id }}">{{ i.title }}</a>
21ecbde9e080 add books controller to handle list of books
rougeronj
parents:
diff changeset
     7
    </div>
21ecbde9e080 add books controller to handle list of books
rougeronj
parents:
diff changeset
     8
  </li>
21ecbde9e080 add books controller to handle list of books
rougeronj
parents:
diff changeset
     9
</ul>