coriplus/app/templates/includes/location_selector.html

7 lines
175 B
HTML
Raw Permalink Normal View History

2019-10-20 13:14:16 +02:00
<select name="location">
<option value="0">Not Applicable</option>
{% for k, v in locations.items() %}
<option value="{{ k }}">{{ v }}</option>
{% endfor %}
</select>