summaryrefslogtreecommitdiff
path: root/static/website/templates/ajax-books.html
blob: a7eba3ece07a9a3908669a175923de129cc1b1a6 (plain)
1
2
3
4
5
6
7
8
9
{% if books %}
<label>Book: </label>
<select id="books">
    <option value="">Select Book</option>
{% for book in books %}
    <option value="{{ book.id }}">{{ book.book }}</option>
{% endfor %}
</select>
{% endif %}