diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-05-15 08:28:19 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-05-15 08:28:19 +0000 |
commit | 5da0cc138f4330fd07e9c117b3f4261dc1bcbc19 (patch) | |
tree | 8efc921f3ce182f1cfb781c7a4c3dabca1c6fc43 /view | |
parent | 960354b16cab06915a2f85fcc5e55d380765d858 (diff) | |
download | volse-hubzilla-5da0cc138f4330fd07e9c117b3f4261dc1bcbc19.tar.gz volse-hubzilla-5da0cc138f4330fd07e9c117b3f4261dc1bcbc19.tar.bz2 volse-hubzilla-5da0cc138f4330fd07e9c117b3f4261dc1bcbc19.zip |
Refactor and cleanup Rbmark module + add tests
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/field_input.tpl | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/view/tpl/field_input.tpl b/view/tpl/field_input.tpl index 2f9f83ac5..1b548221f 100644 --- a/view/tpl/field_input.tpl +++ b/view/tpl/field_input.tpl @@ -1,7 +1,18 @@ <div id="id_{{$field.0}}_wrapper" class="mb-3"> - <label for="id_{{$field.0}}" id="label_{{$field.0}}">{{$field.1}}{{if $field.4}}<sup class="required zuiqmid"> {{$field.4}}</sup>{{/if}}</label> - <input class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" type="text" value="{{$field.2}}"{{if $field.5}} {{$field.5}}{{/if}}> - <small id="help_{{$field.0}}" class="form-text text-muted">{{$field.3}}</small> + <label for="id_{{$field.0}}" id="label_{{$field.0}}"> + {{$field.1}}{{if $field.4}}<sup class="required zuiqmid"> {{$field.4}}</sup>{{/if}} + </label> + <input + class="form-control" + name="{{$field.0}}" + id="id_{{$field.0}}" + type="text" + value="{{$field.2|escape:'html':'UTF-8':FALSE}}" + {{if $field.5}}{{$field.5}}{{/if}} + > + <small id="help_{{$field.0}}" class="form-text text-muted"> + {{$field.3}} + </small> </div> {{* COMMENTS for this template: |