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

47 lines
1.8 KiB

1 year ago
  1. {{#if options.troubleshoot}}
  2. <h3>{{localize "PF2E.Migrations.Summary.Troubleshoot.Hint" version=systemVersion}}</h3>
  3. {{else}}
  4. <h3>{{localize "PF2E.Migrations.Finished" version=systemVersion}}</h3>
  5. {{/if}}
  6. <div class="dialog-content">
  7. <table>
  8. <thead>
  9. <tr>
  10. <th>{{localize "PF2E.Migrations.Summary.Documents"}}</th>
  11. <th>{{localize "PF2E.Migrations.Summary.Migrated"}} / {{localize "PF2E.Migrations.Summary.Total"}}</th>
  12. <th></th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr>
  17. <td>{{localize "PF2E.Actor.Plural"}}</td>
  18. <td><span class="docs-successful">{{actors.successful}}</span> / {{actors.total}}</td>
  19. <td>
  20. {{#if (eq actors.successful actors.total)}}
  21. <i class="fas fa-check"></i>
  22. {{else}}
  23. <i class="fas fa-times"></i>
  24. {{/if}}
  25. </td>
  26. </tr>
  27. <tr>
  28. <td>{{localize "PF2E.Item.Plural"}}</td>
  29. <td><span class="docs-successful">{{items.successful}}</span> / {{items.total}}</td>
  30. <td>
  31. {{#if (eq items.successful items.total)}}
  32. <i class="fas fa-check"></i>
  33. {{else}}
  34. <i class="fas fa-times"></i>
  35. {{/if}}
  36. </td>
  37. </tr>
  38. </tbody>
  39. </table>
  40. </div>
  41. {{#if helpResources}}
  42. <p class="help-resources">{{{helpResourcesText}}}</p>
  43. {{/if}}
  44. <div class="dialog-buttons">
  45. <button type="button" data-action="close">{{localize "PF2E.OK"}}</button>
  46. {{#if canRemigrate}}<button type="button" data-action="remigrate" {{disabled helpResources}}>{{localize "PF2E.Migrations.Summary.Remigrate"}}</button>{{/if}}
  47. </div>