21 lines
446 B
Handlebars
21 lines
446 B
Handlebars
<div>
|
|
<input
|
|
type="text"
|
|
class="name"
|
|
aria-label="{{ rc-i18n "Name" }}"
|
|
name="name"
|
|
value="{{item.name}}"
|
|
{{disabled meta.limited}}
|
|
autocomplete="off"
|
|
>
|
|
<button
|
|
type="button"
|
|
data-action="openRichEditor"
|
|
data-path="system.description"
|
|
data-uuid="{{item.uuid}}"
|
|
data-collaborative="true"
|
|
>
|
|
{{ rc-i18n "RipCrypt.Apps.edit-description" }}
|
|
</button>
|
|
<div class="value">{{{ enriched.system.description }}}</div>
|
|
</div>
|