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