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

20 lines
636 B

1 year ago
  1. <form id="long-rest" class="dialog-content" onsubmit="event.preventDefault();">
  2. <p>{{ localize "DND5E.LongRestHint" }}</p>
  3. {{#if promptNewDay}}
  4. <div class="form-group">
  5. <label>{{ localize "DND5E.NewDay" }}</label>
  6. <input type="checkbox" name="newDay" {{checked newDay}}/>
  7. <p class="hint">{{ localize "DND5E.NewDayHint" }}</p>
  8. </div>
  9. {{/if}}
  10. <div class="dialog-buttons">
  11. {{#each buttons as |button id|}}
  12. <button class="dialog-button" data-button="{{id}}">
  13. {{{button.icon}}}
  14. {{{button.label}}}
  15. </button>
  16. {{/each}}
  17. </div>
  18. </form>