All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.

39 lines
1.4 KiB

  1. <form>
  2. <section>
  3. <header class="table-header flexrow">
  4. <div class="index"><label></label></div>
  5. <div><label>Username</label></div>
  6. <div><label>Apply</label></div>
  7. </header>
  8. <ul>
  9. {{#each users}}
  10. <li class="form-group">
  11. <div class="index">
  12. <img height="32" width="32" src="{{this.avatar}}" style="border-color: {{this.color}};"/>
  13. </div>
  14. <div class="form-fields">
  15. <label>{{this.name}}</label>
  16. </div>
  17. <div class="form-fields">
  18. <input type="checkbox" name="{{this.userId}}" {{#if this.apply}}checked{{/if}} />
  19. </div>
  20. </li>
  21. {{/each}}
  22. </ol>
  23. </section>
  24. <div class="form-group">
  25. <label>Invisible Image</label>
  26. <div class="form-fields">
  27. <Input type="text" name="invisibleImage" value="{{invisibleImage}}"/>
  28. <button type="button" class="file-picker" data-type="image" data-target="invisibleImage" title="Browse Files" tabindex="-1"><i class="fas fa-file-import fa-fw"></i></button>
  29. </div>
  30. <p class="notes">Placeables will be rendered invisible for non-gm users that have this image assigned to them.</p>
  31. </div>
  32. <footer class="sheet-footer flexrow">
  33. <button type="submit">
  34. <i class="far fa-save"></i>{{localize "token-variants.common.apply"}}
  35. </button>
  36. </footer>
  37. </form>