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
961 B

  1. {{#if (eq mode "brackets")}}
  2. <div class="brackets">
  3. {{#each value.brackets as |bracket idx|}}
  4. <div class="bracket">
  5. <label>{{localize "PF2E.RuleEditor.General.Range"}}</label>
  6. <div class="range">
  7. <input type="number" name="{{@root.path}}.brackets.{{idx}}.start" value="{{bracket.start}}">
  8. -
  9. <input type="number" name="{{@root.path}}.brackets.{{idx}}.end" value="{{bracket.end}}">
  10. </div>
  11. <label class="value">
  12. {{localize "PF2E.RuleEditor.General.Value"}}
  13. <input type="text" name="{{@root.path}}.brackets.{{idx}}.value" value="{{bracket.value}}"/>
  14. </label>
  15. <a data-action="delete-bracket" data-idx="{{idx}}" data-property="{{@root.property}}"><i class="fa-solid fa-fw fa-trash"></i></a>
  16. </div>
  17. {{/each}}
  18. </div>
  19. {{/if}}