mirror of
https://github.com/documize/community.git
synced 2025-07-18 20:59:43 +02:00
25 lines
870 B
Handlebars
25 lines
870 B
Handlebars
{{layout/logo-heading
|
|
title=(localize 'content')
|
|
desc=(localize 'settings')
|
|
icon=constants.Icon.Settings}}
|
|
|
|
<form class="view-document">
|
|
<div class="form-group">
|
|
<label for="document-name">{{localize 'name'}}</label>
|
|
{{focus-input id="document-name" type="text" value=docName
|
|
class=(if hasNameError "form-control mousetrap is-invalid" "form-control mousetrap") placeholder="" autocomplete="off"}}
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="document-excerpt">{{localize 'description'}}</label>
|
|
{{textarea id="document-excerpt" rows="4" value=docExcerpt class="form-control mousetrap" placeholder="" autocomplete="off"}}
|
|
<small class="form-text text-muted">{{localize 'excerpt'}}</small>
|
|
</div>
|
|
|
|
{{ui/ui-button
|
|
color=constants.Color.Green
|
|
icon=constants.Icon.Settings
|
|
label=(localize 'save')
|
|
light=true
|
|
onClick=(action "onSave")}}
|
|
</form>
|