Make it possible to include some html markup in the option display string (specifically, an em-dash).

- Legacy-Id: 4521
This commit is contained in:
Henrik Levkowetz 2012-06-27 08:32:09 +00:00
parent b0016c0fe9
commit 590abeea30

View file

@ -74,7 +74,7 @@ In order to add some individual documents to your list you have to:
<div class="{{ entry.type }}">
<select>
{% for option in entry.options %}
<option value={{ option.0 }}>{{ option.1 }}</option>
<option value={{ option.0 }}>{{ option.1|safe }}</option>
{% endfor %}
</select>
</div>