20 lines
427 B
Handlebars
20 lines
427 B
Handlebars
<div
|
|
class="content tab {{ifThen tabActive "active" ""}}"
|
|
data-group="primary"
|
|
data-tab="content"
|
|
>
|
|
{{#if editable}}
|
|
<prose-mirror
|
|
class="actor-text"
|
|
name="system.content"
|
|
value="{{system.content}}"
|
|
collaborate="true"
|
|
data-document-uuid="{{actor.uuid}}"
|
|
{{ifThen toggled "toggled" ""}}
|
|
>
|
|
{{{ enriched.system.content }}}
|
|
</prose-mirror>
|
|
{{else}}
|
|
{{{ enriched.system.content }}}
|
|
{{/if}}
|
|
</div>
|