20 lines
450 B
Plaintext
Raw Normal View History

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
a(href=purchase.User().Link())= purchase.User().Nick
2017-10-07 21:24:09 +00:00
PurchaseInfo(purchase)