20 lines
481 B
Plaintext
Raw Normal View History

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
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)