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

1 year ago
  1. <form autocomplete="off">
  2. <div class="form-group">
  3. <label>{{localize "PF2E.Actor.Creature.Configure.Alliance.Label"}}</label>
  4. <select name="system.details.alliance">
  5. {{#each alliances as |option|}}
  6. <option value="{{option.value}}"{{#if option.selected}} selected="selected"{{/if}}>{{localize option.label}}</option>
  7. {{/each}}
  8. </select>
  9. <p class="hint">{{localize "PF2E.Actor.Creature.Configure.Alliance.Hint"}}</p>
  10. </div>
  11. <div class="form-group">
  12. <label>{{localize "PF2E.Actor.Character.Configure.ShowBasicUnarmed.Label"}}</label>
  13. <input type="checkbox" name="flags.pf2e.showBasicUnarmed" {{checked showBasicUnarmed}} />
  14. <p class="hint">{{{localize "PF2E.Actor.Character.Configure.ShowBasicUnarmed.Hint"}}}</p>
  15. </div>
  16. <button type="submit">
  17. <i class="fas fa-save"></i> {{localize "SETTINGS.Save"}}
  18. </button>
  19. </form>