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.

44 lines
1.7 KiB

1 year ago
  1. <h2>{{localize "PF2E.SETTINGS.CompendiumBrowserSources.Name"}}</h2>
  2. <p>
  3. {{localize "PF2E.SETTINGS.CompendiumBrowserSources.Hint"}}
  4. </p>
  5. <div class="setting-section single-column">
  6. <h3>{{localize "PF2E.SETTINGS.Settings"}}</h3>
  7. <dl>
  8. <label>
  9. <dt><input type="checkbox" name="show-empty-sources" {{checked sources.showEmptySources}}></dt>
  10. <dd>{{localize "PF2E.SETTINGS.CompendiumBrowserSources.ShowEmptySources"}}</dd>
  11. </label>
  12. </dl>
  13. <dl>
  14. <label>
  15. <dt><input type="checkbox" name="show-unknown-sources" {{checked sources.showUnknownSources}}></dt>
  16. <dd>{{localize "PF2E.SETTINGS.CompendiumBrowserSources.ShowUnknownSources"}}</dd>
  17. </label>
  18. </dl>
  19. <dl>
  20. <label>
  21. <dt><input type="checkbox" name="ignore-as-gm" {{checked sources.ignoreAsGM}}></dt>
  22. <dd>{{localize "PF2E.SETTINGS.CompendiumBrowserSources.IgnoreAsGM"}}</dd>
  23. </label>
  24. </dl>
  25. <button type="button" data-action="settings-sources-delete">{{localize "PF2E.SETTINGS.CompendiumBrowserSources.DeleteAllTitle"}}</button>
  26. </div>
  27. <div class="setting-section single-column">
  28. <h3>{{localize "PF2E.SETTINGS.CompendiumBrowserSources.SourcesListHeader"}}</h3>
  29. <dl>
  30. <dt><input type="checkbox" data-action="setting-sources-toggle-visible" /></dt>
  31. <dd><input type="text" data-element="setting-sources-search" /></dd>
  32. {{#each sources.sources}}
  33. <label data-element="setting-source" data-name="{{this.name}}">
  34. <dt><input type="checkbox" name="source-{{@key}}" {{checked this.load}}></dt>
  35. <dd>{{this.name}}</dd>
  36. </label>
  37. {{/each}}
  38. <dl>
  39. </div>