mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Added the shell of the Countdown application * Added countdown automation * Fixed overflow layout and added confirmation on countdown removal * Added ownership to countdowns
32 lines
No EOL
1.2 KiB
Handlebars
32 lines
No EOL
1.2 KiB
Handlebars
<div>
|
|
<div class="form-group">
|
|
<label>{{localize "DAGGERHEART.Settings.Automation.FIELDS.hope.label"}}</label>
|
|
<div class="form-fields">
|
|
{{formInput settingFields.schema.fields.hope value=settingFields._source.hope }}
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>{{localize "DAGGERHEART.Settings.Automation.FIELDS.actionPoints.label"}}</label>
|
|
<div class="form-fields">
|
|
{{formInput settingFields.schema.fields.actionPoints value=settingFields._source.actionPoints }}
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>{{localize "DAGGERHEART.Settings.Automation.FIELDS.countdowns.label"}}</label>
|
|
<div class="form-fields">
|
|
{{formInput settingFields.schema.fields.countdowns value=settingFields._source.countdowns }}
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="form-footer">
|
|
<button data-action="reset">
|
|
<i class="fa-solid fa-arrow-rotate-left"></i>
|
|
<span>{{localize "Reset"}}</span>
|
|
</button>
|
|
<button data-action="save" >
|
|
<i class="fa-solid fa-floppy-disk"></i>
|
|
<span>{{localize "Save Changes"}}</span>
|
|
</button>
|
|
</footer>
|
|
</div>
|
|
|