➍
<table class="table table-hover">
<thead>
<tr><th>도서</th>
<th>#</th>
<th class="text-center">가격</th>
<th class="text-center">소계</th>
</tr>
</thead>
<tbody>
<c:forEach var="cartItem" items="${order.cart.cartItems}">
<tr>
<td><em>${cartItem.value.book.name}</em></td>
<td style="text-align: center">${cartItem.value.quantity}</td>
<td class="text-center">${cartItem.value.book.unitPrice}원</td>
<td class="text-center">${cartItem.value.totalPrice}원</td>
</tr>
</c:forEach>
<tr>
<td> </td>
<td> </td>
<td class="text-right"><h5><strong>총액: </strong></h5></td>
<td class="text-center text-danger"><h4><strong>${order.cart.grandTotal}</strong></h4></td>
</tr>
</tbody>
</table>
<input type="hidden" name="_flowExecutionKey" value="${flowExecutionKey}"/> ➎
➏
<button class="btn btn-default" name="_eventId_backToShippingInfo">이전</button>
<button type="submit" class="btn btn-success" name="_eventId_orderConfirmed">주문완료</button>
<button class="btn btn-default" name="_eventId_cancel">취소</button>
</div>
</div>
</form:form>
</div>
</body>
</html>