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.

16 lines
719 B

1 year ago
  1. <form autocomplete="off" onsubmit="event.preventDefault();">
  2. <label>{{localize prompt}}</label>
  3. <div class="form-group">
  4. <label>{{localize "PF2E.loot.Quantity"}}:</label>
  5. <input type="number" name="quantity" value="{{quantity.default}}" min="1" max="{{quantity.max}}" />
  6. </div>
  7. <div class="form-group">
  8. {{#if lockStack}}
  9. <input type="hidden" name="newStack" value="true" data-dtype="Boolean" />
  10. {{else}}
  11. <label>{{localize "PF2E.loot.Stack"}}</label>
  12. <input type="checkbox" name="newStack" {{checked newStack}} />
  13. {{/if}}
  14. </div>
  15. <button type="submit"><i class="far fa-save"></i>{{localize buttonLabel}}</button>
  16. </form>