1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 07:39:43 +02:00
documize/gui/app/templates/components/document/settings-category.hbs
2022-03-09 15:20:16 -05:00

19 lines
481 B
Handlebars

{{layout/logo-heading
title=(localize 'categories')
desc=(localize 'doc_category_explain')
icon=constants.Icon.Category}}
{{#if categories}}
{{ui/ui-list-picker items=categories nameField="category" singleSelect=false}}
<Ui::UiSpacer @size="300" />
{{ui/ui-button
color=constants.Color.Green
icon=constants.Icon.Category
label=(localize 'save')
light=true
onClick=(action "onSave")}}
{{else}}
<p class="color-green-700">{{localize 'category_none'}}</p>
{{/if}}