All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
561 B

<div class="form-fields">
{{#if (or (eq duration.unit "unlimited") (eq duration.unit "encounter"))}}
<input type="hidden" name="{{base}}.value" value="-1" data-dtype="Number" />
{{else}}
<input type="number" name="{{base}}.value" class="left-of-select" value="{{duration.value}}" />
{{/if}}
<select name="{{base}}.unit">
{{#select duration.unit}}
{{#each units as |label key|}}
<option value="{{key}}">{{localize label}}</option>
{{/each}}
{{/select}}
</select>
</div>