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