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.

26 lines
906 B

1 year ago
  1. <form class="loot-actor-popup" autocomplete="off" onsubmit="event.preventDefault();">
  2. <div class="checkboxes">
  3. <h1>{{localize "PF2E.loot.SplitCoinsPopupHeader"}}</h1>
  4. {{#each actorInfo as |info|}}
  5. <p>
  6. <label>
  7. <input type="checkbox" name="actorIds" value="{{info.id}}" {{checked info.checked}} />
  8. <span>{{info.name}}</span>
  9. </label>
  10. </p>
  11. {{/each}}
  12. <hr />
  13. <p>
  14. <label class="break-coins" for="breakCoins">
  15. <input type="checkbox" name="breakCoins" />
  16. <span>Allow coin type conversion</span>
  17. </label>
  18. </p>
  19. </div>
  20. <p>
  21. <button class="confirm-button" type="submit">
  22. <i class="far fa-save"></i>
  23. {{localize "PF2E.loot.SplitCoinsLabel"}}
  24. </button>
  25. </p>
  26. </form>