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.

28 lines
941 B

  1. <input type="text" name="{{path}}.title" class="title" value="{{data.title}}" placeholder="Title" />
  2. <div class="authors">
  3. <label for="{{options.id}}-publication-authors">Author(s)</label>
  4. <input
  5. type="text"
  6. name="{{path}}.authors"
  7. id="{{options.id}}-publication-authors"
  8. value="{{data.authors}}"
  9. />
  10. </div>
  11. <div class="license">
  12. <label for="{{options.id}}-publication-license">License</label>
  13. <select name="{{path}}.license" id="{{options.id}}-publication-license">
  14. {{#select data.license}}
  15. <option value="OGL">OGL</option>
  16. <option value="ORC">ORC</option>
  17. {{/select}}
  18. </select>
  19. </div>
  20. <div class="remaster">
  21. <label for="{{options.id}}-publication-remaster">Remaster?</label>
  22. <input
  23. type="checkbox"
  24. name="{{path}}.remaster"
  25. id="{{options.id}}-publication-remaster"
  26. {{checked data.remaster}}
  27. />
  28. </div>