Files
fvtt-oath-hammer/templates/actor/settlement-overview.hbs

35 lines
1.4 KiB
Handlebars
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<section data-tab="overview" data-group="{{tab.group}}" class="tab {{tab.cssClass}}">
<div class="settlement-overview-grid">
<fieldset class="currency-bar">
<legend>{{localize "OATHHAMMER.Label.Treasury"}}</legend>
<div class="flexrow">
<div class="currency-item">
<label>{{localize "OATHHAMMER.Currency.GP"}}</label>
<div class="currency-stepper">
<a data-action="adjustCurrency" data-field="system.currency.gold" data-delta="-1" class="qty-btn"></a>
{{formInput systemFields.currency.fields.gold value=system.currency.gold name="system.currency.gold"}}
<a data-action="adjustCurrency" data-field="system.currency.gold" data-delta="1" class="qty-btn">+</a>
</div>
</div>
</div>
</fieldset>
<fieldset>
<legend>{{localize "OATHHAMMER.Label.Founded"}}</legend>
{{formInput systemFields.founded value=system.founded name="system.founded" disabled=isPlayMode}}
</fieldset>
<fieldset class="tax-notes">
<legend>{{localize "OATHHAMMER.Label.TaxNotes"}}</legend>
{{formInput systemFields.taxNotes value=system.taxNotes name="system.taxNotes" disabled=isPlayMode}}
</fieldset>
</div>
<fieldset>
<legend>{{localize "OATHHAMMER.Label.Description"}}</legend>
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
</fieldset>
</section>