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_item.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_item.tpl')
-rw-r--r-- | view/tpl/pdledit_gui_item.tpl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/view/tpl/pdledit_gui_item.tpl b/view/tpl/pdledit_gui_item.tpl new file mode 100644 index 000000000..9d0095ed4 --- /dev/null +++ b/view/tpl/pdledit_gui_item.tpl @@ -0,0 +1,18 @@ +<div class="pdledit_gui_item card mb-3" data-src="{{$entry.src}}"> + <div class="card-header d-flex justify-content-between"> + <span class="text-uppercase">{{$entry.name}}</span> + <div class="badge rounded-pill{{if $entry.type === 'widget'}} bg-info text-dark{{/if}}{{if $entry.type === 'content'}} bg-primary{{/if}}{{if $entry.type === 'menu'}} bg-secondary{{/if}}{{if $entry.type === 'block'}} bg-warning text-dark{{/if}}"> + {{$entry.type}} + </div> + </div> + <div class="card-body"> + {{if $entry.desc}} + <div class="mb-3 text-muted">{{$entry.desc}}</div> + {{/if}} + {{if $entry.type !== 'content'}} + <button type="button" class="btn btn-sm btn-outline-primary pdledit_gui_item_src{{if $disable_controls}} disabled{{/if}}">Edit</button> + <button type="button" class="btn btn-sm btn-outline-danger pdledit_gui_item_remove{{if $disable_controls}} disabled{{/if}}">Remove</button> + <i class="fa fa-fw fa-arrows-alt m-2 float-end cursor-pointer pdledit_gui_item_handle"></i> + {{/if}} + </div> +</div> |