mirror of
https://github.com/documize/community.git
synced 2025-08-02 20:15:26 +02:00
category permission admin, re-vamped view layout
This commit is contained in:
parent
0c152c219f
commit
3f31d6d15e
48 changed files with 753 additions and 373 deletions
12
gui/app/templates/components/ui/ui-list-picker.hbs
Normal file
12
gui/app/templates/components/ui/ui-list-picker.hbs
Normal file
|
@ -0,0 +1,12 @@
|
|||
<div class="widget-list-picker">
|
||||
<ul class="options">
|
||||
{{#each items as |item|}}
|
||||
<li class="option {{if item.selected 'selected'}}" {{action 'onToggle' item}}>
|
||||
<div class="text">{{get item nameField}}</div>
|
||||
{{#if item.selected}}
|
||||
<i class="material-icons">check</i>
|
||||
{{/if}}
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue