uncloud/uncloud_v3/app/templates/app/order_confirmation.html

14 lines
289 B
HTML

<h2>Order Confirmation</h2>
<p>
Thank you for the order. The details are below:
</p>
<div class="order-details">
Order ID: {{ product_order.id }}<br/>
Product: {{ product_order.product.name }}
</div>
<br/>
<div>
<a href="{% url 'index' %}">Go back to the home page</a>
</div>