2017-10-07 21:24:09 +00:00
|
|
|
component GlobalPurchaseHistory(purchases []*arn.Purchase)
|
|
|
|
AdminTabs
|
|
|
|
|
|
|
|
h1.page-title All Purchases
|
|
|
|
|
|
|
|
table
|
|
|
|
thead
|
|
|
|
tr.mountable
|
|
|
|
th User
|
|
|
|
th Icon
|
|
|
|
th Item
|
|
|
|
th.history-quantity Quantity
|
|
|
|
th.history-price Price
|
|
|
|
th.history-date Date
|
|
|
|
tbody
|
|
|
|
each purchase in purchases
|
2017-11-05 08:32:46 +00:00
|
|
|
tr.shop-history-item.mountable(data-item-id=purchase.ItemID)
|
2017-10-07 21:24:09 +00:00
|
|
|
td
|
2018-03-23 20:33:19 +00:00
|
|
|
a(href=purchase.User().Link())= purchase.User().Nick
|
2017-10-07 21:24:09 +00:00
|
|
|
PurchaseInfo(purchase)
|