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.

96 lines
2.3 KiB

  1. <div class="item-piles-chat-card">
  2. <div class="item-piles-chat-card-title item-piles-bottom-divider">
  3. <p>
  4. <img src="{{party_1.actor.img}}" data-fast-tooltip="{{party_1.actor.name}}" height="32"/>
  5. <i class="fas fa-handshake"></i> <img src="{{party_2.actor.img}}" data-fast-tooltip="{{party_2.actor.name}}"
  6. height="32"/>
  7. </p>
  8. <p style="margin:0;">{{ localize "ITEM-PILES.Chat.TradeComplete" party_1=party_1.actor.name
  9. party_2=party_2.actor.name}}</p>
  10. </div>
  11. {{#if enableCollapse}}
  12. <details class="item-piles-collapsible">
  13. <summary>{{ localize "ITEM-PILES.Chat.ExpandTrade" }}</summary>
  14. {{/if}}
  15. {{#unless party_1.got_nothing}}
  16. <p>{{party_1.actor.name}} received:</p>
  17. {{#if party_1.items}}
  18. <ul>
  19. {{#each party_1.items as |item id|}}
  20. <li>
  21. <img src="{{item.img}}" data-fast-tooltip="{{item.name}}" height="16"/>
  22. <label>{{item.name}}</label>
  23. <small>{{item.quantity}}</small>
  24. </li>
  25. {{/each}}
  26. </ul>
  27. {{/if}}
  28. {{#if party_1.items}}
  29. {{#if party_1.currencies}}
  30. <hr>
  31. {{/if}}
  32. {{/if}}
  33. {{#if party_1.currencies}}
  34. <ul>
  35. {{#each party_1.currencies as |currency id|}}
  36. <li>
  37. <img src="{{currency.img}}" data-fast-tooltip="{{currency.name}}" height="16"/>
  38. <label>{{currency.name}}</label>
  39. <small>{{currency.quantity}}</small>
  40. </li>
  41. {{/each}}
  42. </ul>
  43. {{/if}}
  44. {{/unless}}
  45. {{#unless party_1.got_nothing}}
  46. {{#unless party_2.got_nothing}}
  47. <hr>
  48. {{/unless}}
  49. {{/unless}}
  50. {{#unless party_2.got_nothing}}
  51. <p>{{party_2.actor.name}} received:</p>
  52. {{#if party_2.items}}
  53. <ul>
  54. {{#each party_2.items as |item id|}}
  55. <li>
  56. <img src="{{item.img}}" data-fast-tooltip="{{item.name}}" height="16"/>
  57. <label>{{item.name}}</label>
  58. <small>{{item.quantity}}</small>
  59. </li>
  60. {{/each}}
  61. </ul>
  62. {{/if}}
  63. {{#if party_2.items}}
  64. {{#if party_2.currencies}}
  65. <hr>
  66. {{/if}}
  67. {{/if}}
  68. {{#if party_2.currencies}}
  69. <ul>
  70. {{#each party_2.currencies as |currency id|}}
  71. <li>
  72. <img src="{{currency.img}}" data-fast-tooltip="{{currency.name}}" height="16"/>
  73. <label>{{currency.name}}</label>
  74. <small>{{currency.quantity}}</small>
  75. </li>
  76. {{/each}}
  77. </ul>
  78. {{/if}}
  79. {{/unless}}
  80. {{#if enableCollapse}}
  81. </details>
  82. {{/if}}
  83. </div>