summaryrefslogtreecommitdiff
path: root/static/website/templates/ajax-books.html
blob: cf12559958f1ee895e29eaa8410944602025bda6 (plain)
1
2
3
4
5
6
7
8
9
10
{% if books %}
<label>Book: </label>
<select id="books">
    <option value="">Select Book</option>
{% for book in books %}
    <option value="{{ book.id }}">{{ book.book }} (by {{ book.author }})</option>
{% endfor %}
</select>
{% endif %}
<a href="#" class="extra-link" id="download-book">Download Book</a>