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.

46 lines
1.7 KiB

1 year ago
  1. <div class="inventory-details">
  2. <div class="form-group">
  3. <label>{{localize "PF2E.QuantityLabel"}}</label>
  4. <input type="number" name="system.quantity" value="{{data.quantity}}" />
  5. </div>
  6. <div class="form-group">
  7. <label>{{localize "PF2E.BulkLabel"}}</label>
  8. <select name="system.weight.value" {{disabled bulkDisabled}}>
  9. {{#select data.weight.value}}
  10. <option value="-">{{localize "PF2E.NegligibleOption"}}</option>
  11. {{#each bulkTypes as |name type|}}
  12. <option value="{{type}}">{{localize name}}</option>
  13. {{/each}}
  14. {{/select}}
  15. </select>
  16. </div>
  17. <div class="form-group">
  18. <label>{{localize "PF2E.StackGroupLabel"}}</label>
  19. <select name="system.stackGroup">
  20. {{#select data.stackGroup}}
  21. <option value="">{{localize "PF2E.NoStackGroup"}}</option>
  22. {{#each stackGroups as |name type|}}
  23. <option value="{{type}}">{{localize name}}</option>
  24. {{/each}}
  25. {{/select}}
  26. </select>
  27. </div>
  28. <div class="form-group">
  29. <label>{{localize "PF2E.Size"}}</label>
  30. <select name="system.size">
  31. {{#select data.size}}
  32. {{#each sizes as |name value|}}
  33. <option value="{{value}}">{{localize name}}</option>
  34. {{/each}}
  35. {{/select}}
  36. </select>
  37. </div>
  38. <div class="form-group">
  39. <label>{{localize "PF2E.PriceLabel"}}</label>
  40. <input type="text" name="system.price.value" value="{{item.price.value}}" spellcheck="false" />
  41. </div>
  42. </div>