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.

16 lines
868 B

1 year ago
  1. <form autocomplete="off" onsubmit="event.preventDefault();">
  2. <p class="notes">{{localize "DICESONICE.SaveAsHint"}}</p>
  3. <div class="form-group">
  4. <select data-save-list name="save-list">
  5. {{#each saveList as |name key|}}
  6. <option value="{{name}}">{{name}}</option>
  7. {{/each}}
  8. </select>
  9. <button type="button" data-overwrite name="overwrite">{{localize "DICESONICE.Overwrite"}}</button>
  10. <button type="button" data-delete name="delete" title='{{localize "DICESONICE.Delete"}}'><i class="fas fa-trash"></i></button>
  11. </div>
  12. <hr/>
  13. <div class="form-group">
  14. <input type="text" name="save-name" data-save-name placeholder='{{localize "DICESONICE.SaveAsErrorName"}}'/>
  15. <button type="button" data-add-new name="add-new">{{localize "DICESONICE.AddNew"}}</button>
  16. </div>
  17. </form>