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.

63 lines
2.8 KiB

1 year ago
  1. <form autocomplete="off">
  2. <div class="form-group">
  3. <label>{{localize "PLAYERS.PlayerAvatar"}}</label>
  4. <img class="avatar" src="{{user.avatar}}" data-edit="avatar" title="{{actor.name}}" height="64" width="64"/>
  5. </div>
  6. <div class="form-group">
  7. <label>{{localize "PLAYERS.PlayerColor"}}</label>
  8. <div class="form-fields">
  9. {{colorPicker name="color" value=user.color}}
  10. </div>
  11. </div>
  12. {{!-- PF2e Settings --}}
  13. <div class="form-group">
  14. <label>{{localize "PF2E.SETTINGS.User.EffectPanel.Name"}}</label>
  15. <input type="checkbox" name="flags.pf2e.settings.showEffectPanel" {{checked user.flags.pf2e.settings.showEffectPanel}} />
  16. <p class="notes">{{localize "PF2E.SETTINGS.User.EffectPanel.Hint"}}</p>
  17. </div>
  18. <div class="form-group">
  19. <label>{{localize "PF2E.SettingsQuickRollsLabel"}}</label>
  20. <input type="checkbox" name="flags.pf2e.settings.showRollDialogs" {{checked user.flags.pf2e.settings.showRollDialogs}} />
  21. <p class="notes">{{localize "PF2E.SettingsQuickRollsNotes"}}</p>
  22. </div>
  23. <div class="form-group">
  24. <label>{{localize "PF2E.SETTINGS.User.MonochromeDarkvision.Name"}}</label>
  25. <input type="checkbox" name="flags.pf2e.settings.monochromeDarkvision" {{checked user.flags.pf2e.settings.monochromeDarkvision}} />
  26. <p class="notes">{{localize "PF2E.SETTINGS.User.MonochromeDarkvision.Hint"}}</p>
  27. </div>
  28. {{!-- /PF2e Settings --}}
  29. <div class="form-group stacked directory">
  30. {{#if user.character}}
  31. <label>{{localize "PLAYERS.CharSelected"}}</label>
  32. <button type="reset" name="release">
  33. <i class="fas fa-ban"></i> {{localize "PLAYERS.CharRelease"}}
  34. </button>
  35. <ul id="characters" class="directory-list">
  36. <li class="actor directory-item flexrow" data-actor-id="{{user.character.id}}">
  37. <img class="profile actor-profile" src="{{user.character.img}}" title="{{user.character.name}}" />
  38. <h3 class="document-name noborder"><a>{{user.character.name}}</a></h3>
  39. </li>
  40. </ul>
  41. {{else}}
  42. <label>{{localize "PLAYERS.CharSelect"}}</label>
  43. <ul id="characters" class="directory-list">
  44. {{#each actors}}
  45. <li class="actor directory-item flexrow" data-actor-id="{{this.id}}">
  46. <img class="profile actor-profile" src="{{this.img}}" title="{{this.name}}" />
  47. <h3 class="document-name noborder"><a>{{this.name}}</a></h3>
  48. </li>
  49. {{/each}}
  50. </ul>
  51. <input type="hidden" name="character" value="" />
  52. {{/if}}
  53. </div>
  54. <button type="submit">
  55. <i class="fas fa-save"></i> {{localize "PLAYERS.SaveConfig"}}
  56. </button>
  57. </form>