Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ankedsgn/78e31f9d7f9bbaf8c94a6b32943fd8a1 to your computer and use it in GitHub Desktop.
Save ankedsgn/78e31f9d7f9bbaf8c94a6b32943fd8a1 to your computer and use it in GitHub Desktop.
Get values from select in contenttypes.yml
{% set wijken = app.config.get('contenttypes/zoekmachine/fields/wijk_toenjoy/values') %}
<select name="wijken">
{% for item, key in wijken %}
<option value="{{item}}">{{ key }}</option>
{% endfor %}
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment