You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <li>
- <label for="select_charset" class="desc">
- {% trans 'Character set of the file:' %}
- </label>
- <select id="select_charset" name="charset" size="1">
- {% for charset in encodings %}
- <option value="{{ charset }}"
- {%- if (export_charset is empty and charset == 'utf-8')
- or charset == export_charset %}
- selected
- {%- endif %}>
- {{- charset -}}
- </option>
- {% endfor %}
- </select>
- </li>
|