32 lines
1.5 KiB
Handlebars
32 lines
1.5 KiB
Handlebars
{{!-- ======================================================================== --}}
|
|
{{!-- INLINE PARTIAL DEFINITIONS --}}
|
|
{{!-- ======================================================================== --}}
|
|
|
|
|
|
{{#*inline "talentRankBasicProperty" }}
|
|
<div class="basic-property">
|
|
<label for="data.rank.{{property}}">{{localize localizeString}}</label>
|
|
<input type="number" min="0" step="1" data-dtype="Number" {{disabled}}
|
|
{{#if (eq property 'base') }}max="{{data.rank.max}}"{{/if}}
|
|
name="data.rank.{{property}}" value="{{lookup data.rank property}}" />
|
|
</div>
|
|
{{/inline}}
|
|
|
|
|
|
{{!-- ======================================================================== --}}
|
|
|
|
|
|
<form class="{{cssClass}}" autocomplete="off">
|
|
{{#> systems/ds4/templates/item/partials/sheet-header.hbs}}
|
|
<div class="grid grid-4col basic-properties">
|
|
{{> talentRankBasicProperty data=data property='base' localizeString='DS4.TalentRankBase' }}
|
|
{{> talentRankBasicProperty data=data property='max' localizeString='DS4.TalentRankMax'}}
|
|
{{> talentRankBasicProperty data=data property='mod' localizeString='DS4.TalentRankMod'}}
|
|
{{> talentRankBasicProperty data=data property='total' localizeString='DS4.TalentRankTotal' disabled='disabled'}}
|
|
</div>
|
|
{{/systems/ds4/templates/item/partials/sheet-header.hbs}}
|
|
|
|
{{!-- Common Item body --}}
|
|
{{#> systems/ds4/templates/item/partials/body.hbs}}{{/systems/ds4/templates/item/partials/body.hbs}}
|
|
|
|
</form>
|