-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.payments.html
More file actions
64 lines (22 loc) · 1.36 KB
/
module.payments.html
File metadata and controls
64 lines (22 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<div class="widget p-4 p-md-5 border-top module">
<h4 class="module-title"><i class="fas fa-fire"></i> {{ module.header }}</h4>
<ul class="list-unstyled recent-payments">
{% for payment in module.payments %}
<li>
<div class="avatar float-left mr-2">
<img src="https://crafatar.com/renders/head/{{ module.ign }}" width="32">
</div>
<div class="info text-heading-font">
<div class="ign">
<strong class="payments-username">{{ module.ign }}</strong>
<span class="payments-article">- {{ payment.name[:20] }}</span>
<br /><small class="payments-time">{{ payment.time }}</small>
- <strong class="payments-amount">{{ payment.price|money }} {{ payment.currency }}</strong>
</div>
</div>
</li>
{% else %}
{{ __("No recent payments to display.") }}
{% endfor %}
</ul>
</div>