mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* Added stumps for all limited actor views * Added description to adversary and environment * style limited sheets * Limited views are no longer resizable * . * Update styles/less/sheets/actors/actor-sheet-shared.less Co-authored-by: Nikhil Nagarajan <potter.nikhil@gmail.com> --------- Co-authored-by: moliloo <dev.murilobrito@gmail.com> Co-authored-by: Nikhil Nagarajan <potter.nikhil@gmail.com>
21 lines
No EOL
760 B
Handlebars
21 lines
No EOL
760 B
Handlebars
<div class="limited-container">
|
|
<header>
|
|
<img class="profile" src="{{document.img}}" alt="{{document.name}}" data-action='editImage' data-edit="img">
|
|
<h1 class="title-name">{{document.name}}</h1>
|
|
</header>
|
|
<div class="tags">
|
|
<div class="tag">
|
|
<span>
|
|
{{localize (concat 'DAGGERHEART.GENERAL.Tiers.' source.system.tier)}}
|
|
</span>
|
|
</div>
|
|
{{#if source.system.type}}
|
|
<div class="tag">
|
|
<span>
|
|
{{localize (concat 'DAGGERHEART.CONFIG.EnvironmentType.' source.system.type '.label')}}
|
|
</span>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
<div class="description">{{{document.system.description}}}</div>
|
|
</div> |