Use time element
This commit is contained in:
@ -11,7 +11,8 @@ component ClientErrors(reports []*arn.ClientErrorReport)
|
||||
td
|
||||
each line in strings.Split(report.Stack, "\n")
|
||||
p= line
|
||||
td.utc-date(data-date=report.Created)
|
||||
td
|
||||
time.utc-date(datetime=report.Created)
|
||||
td.edit-log-user
|
||||
if report.CreatedBy != ""
|
||||
Avatar(report.Creator())
|
||||
|
@ -12,7 +12,8 @@ component Crashes(crashes []*arn.Crash)
|
||||
td
|
||||
each line in strings.Split(crash.Stack, "\n")
|
||||
p= line
|
||||
td.utc-date(data-date=crash.Created)
|
||||
td
|
||||
time.utc-date(datetime=crash.Created)
|
||||
td.edit-log-user
|
||||
if crash.CreatedBy != ""
|
||||
Avatar(crash.Creator())
|
||||
|
@ -17,4 +17,5 @@ component GlobalPaymentHistory(payments []*arn.PayPalPayment)
|
||||
a(href=payment.User().Link())= payment.User().Nick
|
||||
td.history-price= payment.Amount
|
||||
td.history-price= payment.Currency
|
||||
td.history-date.utc-date(data-date=payment.Created)
|
||||
td.history-date
|
||||
time.utc-date(datetime=payment.Created)
|
||||
|
Reference in New Issue
Block a user