1
0
Fork 0

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

@ -4,6 +4,6 @@
<label for='id_{{$field.0}}'>{{$field.1}}</label>
<textarea name='{{$field.0}}' id='id_{{$field.0}}' class="fieldRichtext" aria-describedby='{{$field.0}}_tip'>{{$field.2}}</textarea>
{{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>