ds4/templates/sheets/actor/components/biography.hbs

20 lines
494 B
Handlebars

{{!--
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT
--}}
<div class="ds4-biography">
{{#if editable}}
<prose-mirror
name="system.profile.biography"
button="true"
editable="{{editable}}"
toggled="false"
value="{{data.system.profile.biography}}">
{{{data.system.profile.biography}}}
</prose-mirror>
{{else}}
{{{data.system.profile.biography}}}
{{/if}}
</div>