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.

19 lines
887 B

1 year ago
  1. <article>
  2. <section class="drop-item-zone">
  3. {{#if item}}
  4. <img src="{{item.img}}" class="item-icon" />
  5. <span>{{item.name}}</span>
  6. {{else}}
  7. <img src="systems/pf2e/icons/actions/repair/unknown-item.webp" class="item-icon" />
  8. <span>{{localize "PF2E.Actions.Repair.SelectItemDialog.DropItemZoneLabel"}}</span>
  9. {{/if}}
  10. </section>
  11. <section class="button-panel">
  12. <button type="button" data-event-handler="repair" {{disabled (not item)}}>
  13. <i class="fa-solid fa-fw fa-hammer"></i> {{localize "PF2E.Actions.Repair.SelectItemDialog.RepairButtonLabel"}}
  14. </button>
  15. <button type="button" data-event-handler="cancel">
  16. <i class="fa-solid fa-fw fa-times"></i> {{localize "PF2E.Actions.Repair.SelectItemDialog.CancelButtonLabel"}}
  17. </button>
  18. </section>
  19. </article>