-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2893 from Hoppyhob/3.0.x_2869
[#2869] Added Limited Sheets, Partial sheets, and Modified logic in character sheet 2 if permission is limited
- Loading branch information
Showing
3 changed files
with
116 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<form class="{{ cssClass }} flexcol" autocomplete="off"> | ||
|
||
{{!-- Header --}} | ||
<header class="sheet-header"> | ||
|
||
{{!-- Portrait --}} | ||
<div class="portrait {{#if portrait.token}}token{{/if}}"> | ||
<img src="{{ portrait.src }}" alt="{{ actor.name }}"> | ||
</div> | ||
|
||
{{!-- Name --}} | ||
<div class="document-name">{{ actor.name }}</div> | ||
|
||
</header> | ||
|
||
{{!-- Body --}} | ||
<section class="sheet-body"> | ||
|
||
{{!-- Main Content --}} | ||
<div class="main-content"> | ||
|
||
{{!-- Tabbed Content --}} | ||
<section class="tab-body"> | ||
|
||
{{!-- Biography --}} | ||
<div class="tab biography active" data-group="primary" data-tab="biography"> | ||
|
||
{{!-- Biography --}} | ||
<div class="bottom"> | ||
<h3 class="icon"> | ||
<i class="fas fa-feather"></i> | ||
<dnd5e-icon src="systems/dnd5e/icons/svg/ink-pot.svg"></dnd5e-icon> | ||
<span class="roboto-upper">{{ localize "DND5E.Biography" }}</span> | ||
</h3> | ||
{{ editor biographyHTML target="system.details.biography.value" button=false | ||
editable=@root.editable engine="prosemirror" collaborate=false }} | ||
engine="prosemirror" collaborate=false }} | ||
</div> | ||
|
||
</div> | ||
|
||
</section> | ||
|
||
</div> | ||
|
||
</section> | ||
|
||
</form> |