I have a filter that returns a python list ['tlc', 'lbh', ...]
I want to iterate over the results in a template such as
{% for dc in settings_value "MULTIPLE_DATACENTERS_TEST_LIST" %}
<option value="{{dc}}">{{dc}}</option>
{% endfor %}
but I get an error how can i get this to work, thanks?