Merge pull request #168 from namaless/patch-3

Missed translate for value
This commit is contained in:
Andy Miller
2015-09-13 17:40:10 -06:00

View File

@@ -4,7 +4,7 @@
{% if field.options and depth == 0 %}
{% for key, value in field.options %}
<option value="{{ key | e('html_attr') }}">{{ value }}</option>
<option value="{{ key|e('html_attr') }}">{{ value|t }}</option>
{% endfor %}
{% endif %}