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