11 lines
430 B
Plaintext
11 lines
430 B
Plaintext
{{ range .Payments -}}
|
|
<tr class="payment-{{ .Status }}">
|
|
<td>{{ .CreatedAt | formatDate }}</td>
|
|
<td><a href="{{ .URL }}">{{ .Reference }}</a></td>
|
|
<td class="payment-status">{{ .StatusLabel }}</td>
|
|
<td class="numeric">{{ .DownPayment | formatPrice }}</td>
|
|
<td class="numeric">{{ .Total | formatPrice }}</td>
|
|
</tr>
|
|
{{- end }}
|
|
{{ template "pagination" .Filters.Cursor | colspan 5 }}
|