diff options
Diffstat (limited to 'static/website/templates/ajax-books.html')
-rw-r--r-- | static/website/templates/ajax-books.html | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/static/website/templates/ajax-books.html b/static/website/templates/ajax-books.html deleted file mode 100644 index 2c8dbb0..0000000 --- a/static/website/templates/ajax-books.html +++ /dev/null @@ -1,11 +0,0 @@ - - <label>Book: </label> - <select id="books"> - <option value="">Select Book </option> - {% for book in books %} {% if book_id == book.id %} - <option value="{{ book.id }}" selected>{{ book.book }} (by {{ book.author }})</option> - {% else %} - <option value="{{ book.id }}">{{ book.book }} (by {{ book.author }})</option> - {% endif %} {% endfor %} - </select> -<a href="#" class="extra-link" id="download-book">Download Book</a> |