diff options
author | Mario <mario@mariovavti.com> | 2022-02-20 20:18:24 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-02-20 20:18:24 +0000 |
commit | 2a60f1cc6ed49ab559090c831788308fe3df0706 (patch) | |
tree | 1a5a0a28cbf4aaeb38dc0b08f03c874833500e78 /view/tpl/pdledit_gui_templates.tpl | |
parent | 2ddff785e55745045bc9a742b2287a500e5370a6 (diff) | |
download | volse-hubzilla-2a60f1cc6ed49ab559090c831788308fe3df0706.tar.gz volse-hubzilla-2a60f1cc6ed49ab559090c831788308fe3df0706.tar.bz2 volse-hubzilla-2a60f1cc6ed49ab559090c831788308fe3df0706.zip |
merge branch pdledit_gui into dev - many widgets still miss their description and requirements (this is work in progress)
Diffstat (limited to 'view/tpl/pdledit_gui_templates.tpl')
-rw-r--r-- | view/tpl/pdledit_gui_templates.tpl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/view/tpl/pdledit_gui_templates.tpl b/view/tpl/pdledit_gui_templates.tpl new file mode 100644 index 000000000..0f3d8a7b6 --- /dev/null +++ b/view/tpl/pdledit_gui_templates.tpl @@ -0,0 +1,11 @@ +<form id="pdledit_gui_templates_form"> + {{foreach $templates as $template}} + <div class="form-check mb-2"> + <input class="form-check-input" type="radio" name="template" id="id_template_{{$template.name}}" value="{{$template.name}}" {{if $template.name == $active}} checked{{/if}}> + <label class="form-check-label" for="id_template_{{$template.name}}"> + {{$template.name}} + </label> + <small class="text-muted">{{$template.desc}}</small> + </div> + {{/foreach}} +</form> |