We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a4c0e6 commit 2a1fcceCopy full SHA for 2a1fcce
account/templates/account_mypage_payments.html
@@ -5,13 +5,24 @@
5
<tr>
6
<th>id </th>
7
<th>user</th>
8
+ <th>금액</th>
9
+ <th>결제일 </th>
10
+ <th>취소</th>
11
</tr>
12
</thead>
13
<tbody>
14
{% for payment in payment_list %}
15
16
<td>{{ payment.id }}</td>
17
<td>{{ payment.user_id }}</td>
18
+ <td>{{ payment.money }}</td>
19
+ <td>{{ payment.create_at }}</td>
20
+ <td>
21
+ <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-full">
22
+ Button
23
+ </button>
24
+
25
+ </td>
26
27
{% endfor %}
28
</tbody>
0 commit comments