Files
foundryvtt-mgt2/templates/actors/actor-config-characteristic-sheet.html
2024-05-06 18:14:21 -04:00

16 lines
801 B
HTML

<form class="{{cssClass}} flexcol" autocomplete="off">
<div class="form-group">
<label class="mgt2-checkbox"><input type="checkbox" name="show" data-dtype="Boolean" {{checked show}} />{{ localize 'MGT2.Actor.Show' }}</label>
</div>
<div class="form-group">
<label class="mgt2-checkbox"><input type="checkbox" name="showMax" data-dtype="Boolean" {{checked showMax}} />{{ localize 'MGT2.Actor.ShowMinMax' }}</label>
</div>
{{#if showAll}}
<fieldset>
<legend>{{ localize 'MGT2.Actor.HiddenCharacteristics' }}</legend>
<div class="form-group">
<label class="mgt2-checkbox"><input type="checkbox" name="showAll" data-dtype="Boolean" />{{ localize 'MGT2.Actor.ShowHiddenFields' }}</label>
</div>
</fieldset>
{{/if}}
</form>