Add order_confirmation template

This commit is contained in:
PCoder 2022-02-22 13:33:45 +05:30
parent c50d688171
commit 1648355fe7
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<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>