Skip to content

Commit 2a1fcce

Browse files
committed
added refund button
1 parent 8a4c0e6 commit 2a1fcce

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

account/templates/account_mypage_payments.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,24 @@
55
<tr>
66
<th>id </th>
77
<th>user</th>
8+
<th>금액</th>
9+
<th>결제일 </th>
10+
<th>취소</th>
811
</tr>
912
</thead>
1013
<tbody>
1114
{% for payment in payment_list %}
1215
<tr>
1316
<td>{{ payment.id }}</td>
1417
<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>
1526
</tr>
1627
{% endfor %}
1728
</tbody>

0 commit comments

Comments
 (0)