All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
 
 
 

30 lines
1.2 KiB

<form>
{{#if rollTables}}
<div class="form-group">
<label>{{localize "PF2E.CompendiumBrowser.RollTable.AddLabel"}}</label>
<select name="roll-table">
{{#each rollTables as |table|}}
<option value="{{table.id}}">{{table.name}}</option>
{{/each}}
</select>
</div>
<div class="form-group">
<label>{{localize "PF2E.CompendiumBrowser.RollTable.WeightLabel"}}</label>
<input type="text" name="weight" placeholder="1">
</div>
<hr>
<p>{{localize "PF2E.CompendiumBrowser.RollTable.AddDialogText" count=count}}</p>
{{else}}
<div class="form-group">
<label>{{localize "Name"}}</label>
<input type="text" name="name" placeholder="{{localize "PF2E.CompendiumBrowser.Title"}}">
</div>
<div class="form-group">
<label>{{localize "PF2E.CompendiumBrowser.RollTable.WeightLabel"}}</label>
<input type="text" name="weight" placeholder="1">
</div>
<hr>
<p>{{localize "PF2E.CompendiumBrowser.RollTable.CreateDialogText" count=count}}</p>
{{/if}}
<br>
</form>