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

24 lines
1.5 KiB

1 year ago
  1. <section class="sheet-body content sheet-content-loot inventory">
  2. {{> "systems/pf2e/templates/actors/partials/coinage.hbs" owner=owner}}
  3. <ol class="inventory-list directory-list inventory-pane item-container item-list" data-container-type="actorInventory">
  4. {{#each inventory.sections as |section|}}
  5. <li class="inventory-header">
  6. <h3 class="item-name">{{section.label}}</h3>
  7. <span class="item-sell-value">{{localize "PF2E.UnitPriceLabel"}}</span>
  8. <span class="item-quantity">{{localize "PF2E.QuantityLabel"}}</span>
  9. <span class="item-weight">{{localize "PF2E.BulkShortLabel"}}</span>
  10. {{#if @root.owner}}
  11. <div class="item-controls">
  12. <a class="item-control item-create" title="{{localize "PF2E.CreateItemTitle"}}" data-type="{{section.type}}"><i class="fa-solid fa-fw fa-plus"></i></a>
  13. <a class="item-control inventory-browse" title="{{localize "PF2E.OpenInventoryBrowser"}}" data-filter="itemtypes-{{section.type}}"><i class="fa-solid fa-fw fa-search"></i></a>
  14. </div>
  15. {{/if}}
  16. </li>
  17. <ol class="item-list" data-item-type="{{section.type}}">
  18. {{#each section.items}}
  19. {{> "systems/pf2e/templates/actors/partials/item-line.hbs" this=this editable=@root.editable owner=@root.owner user=@root.user}}
  20. {{/each}}
  21. </ol>
  22. {{/each}}
  23. </ol>
  24. </section>