Avoid escaping relevant template variables

This commit is contained in:
Hypolite Petovan 2018-12-13 22:35:51 -05:00
commit c407fb7963
165 changed files with 312 additions and 313 deletions

View file

@ -3,9 +3,9 @@
<div class='field select'>
<label for='id_{{$field.0}}'>{{$field.1}}</label>
<select name='{{$field.0}}' id='id_{{$field.0}}' aria-describedby='{{$field.0}}_tip'>
{{$field.4}}
{{$field.4 nofilter}}
</select>
{{if $field.3}}
<span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3}}</span>
<span class="field_help" role="tooltip" id="{{$field.0}}_tip">{{$field.3 nofilter}}</span>
{{/if}}
</div>