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

18 lines
451 B

1 year ago
  1. <form>
  2. <p class="hint">{{hint}}</p>
  3. <ul class="items-list">
  4. {{#each items}}
  5. <li class="item flexrow">
  6. <div class="item-name flexrow">
  7. <div class="item-image" style="background-image:url({{data.img}})" data-item-id="{{id}}"></div>
  8. <label class="flexrow">
  9. <h4>{{data.name}}</h4>
  10. <input type="checkbox" checked name="{{id}}" />
  11. </label>
  12. </div>
  13. </li>
  14. {{/each}}
  15. </ul>
  16. </form>