Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 8 additions & 12 deletions jusik/mypage/templates/jusik/jusik_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,18 @@ <h1 class="text-center display-3">
<th scope="row">매입가</th>
<td>{{ jusik.buy_price }} 원</td>
</tr>
<tr>
<th scope="row">총 매입금액</th>
<td style="font-weight: bold;">{{ jusik.amount_buy }} 원</td>
</tr>
<tr>
<th scope="row">매도가</th>
<td>{{ jusik.sell_price }} 원</td>
</tr>
<tr>
<th scope="row">총 매도금액</th>
<td style="font-weight: bold;">{{ jusik.amount_sell }} 원</td>
</tr>
<tr>
<th scope="row">수량</th>
<td>{{ jusik.amount }} 주</td>
Expand All @@ -29,17 +37,5 @@ <h1 class="text-center display-3">
</tbody>
</table>

<table class="table text-center" style="width:40%; margin-left: auto; margin-right: auto;">
<tbody>
<tr>
<th scope="row">매입단가</th>
<td>{{ jusik.amount_buy }} 원</td>
</tr>
<tr>
<th scope="row">체결단가</th>
<td>{{ jusik.amount_sell }} 원</td>
</tr>
</tbody>
</table>

{% endblock %}