2018-10-18 01:15:06 +00:00
|
|
|
component GlobalPaymentHistory(payments []*arn.PayPalPayment)
|
|
|
|
AdminTabs
|
|
|
|
|
|
|
|
h1.page-title All Payments
|
|
|
|
|
|
|
|
table
|
|
|
|
thead
|
|
|
|
tr.mountable
|
|
|
|
th User
|
2018-11-06 07:20:44 +00:00
|
|
|
th.history-price Amount
|
|
|
|
th.history-price Currency
|
2018-10-18 01:15:06 +00:00
|
|
|
th.history-date Date
|
|
|
|
tbody
|
|
|
|
each payment in payments
|
|
|
|
tr.mountable
|
|
|
|
td
|
|
|
|
a(href=payment.User().Link())= payment.User().Nick
|
2018-11-06 07:20:44 +00:00
|
|
|
td.history-price= payment.Amount
|
|
|
|
td.history-price= payment.Currency
|
|
|
|
td.history-date.utc-date(data-date=payment.Created)
|