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.
 
 
 

19 lines
643 B

<form id="{{appId}}" data-level="{{level}}" data-id="{{advancement.id}}" data-type="{{type}}">
<h3>{{{title}}}</h3>
{{#each items}}
<div class="item-name flexrow">
<div class="item-image" style="background-image: url('{{this.img}}');"></div>
<label class="flexrow">
<h4>
<a data-uuid="{{uuid}}">{{this.name}}</a>
</h4>
{{#if @root.optional}}
<input type="checkbox" name="{{this.uuid}}" {{checked this.checked}}>
{{else}}
<input type="hidden" name="{{this.uuid}}" value="true" data-dtype="Boolean">
{{/if}}
</label>
</div>
{{/each}}
</form>