This commit is contained in:
James Cole
2018-08-17 05:54:29 +02:00
parent 3ca3ce0726
commit 219a0cd612
4 changed files with 17 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
<div class="col-sm-9">
<select id="inputTags" name="tag[]" multiple="multiple" class="form-control">
{% for tag in tags %}
<option value="{{ tag.tag }}" label="{{ tag.tag }}">{{ tag.tag }}</option>
<option value="{{ tag.id }}" label="{{ tag.tag|e('html') }}">{{ tag.tag|e('html') }}</option>
{% endfor %}
</select>
</div>