summaryrefslogtreecommitdiff
path: root/static/website/templates/ajax-examples.html
blob: c69e5c7e083f251bed055490237c0c930e72d1bd (plain)
1
2
3
4
5
6
7
8
9
{% 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 %}