]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/modules/select/locale.html
Drop dependency on textile
[people/jschlag/pbs.git] / data / templates / modules / select / locale.html
1 <select name="{{ name }}" {% if id %}id="{{ id }}"{% end %}>
2 <option value="">- {{ _("Auto-select") }} -</option>
3
4 {% for code, name_en, name_loc in supported_locales %}
5 <option value="{{ code }}" {% if preselect and preselect == code %}selected="selected"{% end %}>
6 {{ name_en }} - {{ name_loc }}
7 </option>
8 {% end %}
9 </select>