2016-05-19 09:19:51 +00:00
|
|
|
{% extends 'shop_base.html' %}
|
2016-05-15 22:09:00 +00:00
|
|
|
{% load bootstrap3 %}
|
2016-05-16 18:56:52 +00:00
|
|
|
{% load shop_tags %}
|
2016-05-06 20:33:59 +00:00
|
|
|
|
2016-05-19 09:19:51 +00:00
|
|
|
{% block shop_content %}
|
2016-05-06 20:33:59 +00:00
|
|
|
|
2016-05-15 22:09:00 +00:00
|
|
|
<h1>Order #{{ order.id }}</h1>
|
|
|
|
|
2016-05-16 13:25:12 +00:00
|
|
|
{% if not order.open == None %}
|
|
|
|
<form method="POST" class="form-inline">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% endif %}
|
|
|
|
|
2016-05-15 22:09:00 +00:00
|
|
|
<table class="table table-bordered table-hover">
|
|
|
|
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
Name
|
|
|
|
<th>
|
|
|
|
Quantity
|
|
|
|
<th>
|
|
|
|
Price
|
|
|
|
<th>
|
|
|
|
Total
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
{% for order_product in order.orderproductrelation_set.all %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
{{ order_product.product.name }}
|
|
|
|
<td>
|
2016-05-16 13:25:12 +00:00
|
|
|
{% if not order.open == None %}
|
|
|
|
<input type="number"
|
|
|
|
class="form-control"
|
|
|
|
style="width: 75px;"
|
|
|
|
min=1
|
|
|
|
name="{{ order_product.id }}"
|
|
|
|
value="{{ order_product.quantity }}" />
|
|
|
|
{% bootstrap_button '<i class="glyphicon glyphicon-remove"></i>' button_type="submit" button_class="btn-danger" name="remove_product" value=order_product.pk %}
|
|
|
|
</form>
|
|
|
|
{% else %}
|
2016-05-15 22:09:00 +00:00
|
|
|
{{ order_product.quantity }}
|
2016-05-16 13:25:12 +00:00
|
|
|
{% endif %}
|
2016-05-15 22:09:00 +00:00
|
|
|
<td>
|
2016-05-16 18:56:52 +00:00
|
|
|
{{ order_product.product.price|currency }}
|
2016-05-15 22:09:00 +00:00
|
|
|
<td>
|
2016-05-16 18:56:52 +00:00
|
|
|
{{ order_product.total|currency }}
|
2016-05-15 22:09:00 +00:00
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
2016-05-16 14:09:25 +00:00
|
|
|
<tr>
|
|
|
|
<td colspan="2">
|
|
|
|
<td>
|
2016-05-16 14:20:01 +00:00
|
|
|
<strong>Hereof VAT (25%)</strong>
|
2016-05-16 14:09:25 +00:00
|
|
|
<td>
|
2016-05-16 18:56:52 +00:00
|
|
|
{{ order.vat|currency }}
|
2016-05-16 14:09:25 +00:00
|
|
|
|
|
|
|
<tr>
|
|
|
|
<td colspan="2">
|
|
|
|
<td>
|
|
|
|
<strong>Total</strong>
|
|
|
|
<td>
|
2016-05-16 18:56:52 +00:00
|
|
|
{{ order.total|currency }}
|
2016-05-15 22:09:00 +00:00
|
|
|
|
|
|
|
</table>
|
|
|
|
|
2016-05-16 13:25:12 +00:00
|
|
|
{% if not order.open == None %}
|
|
|
|
{% bootstrap_button "Update order" button_type="submit" button_class="btn-primary" name="update_order" %}
|
2016-05-31 19:01:48 +00:00
|
|
|
{% bootstrap_button "Cancel order" button_type="submit" button_class="btn-danger pull-right" name="cancel_order" %}
|
2016-05-29 10:37:14 +00:00
|
|
|
{% endif %}
|
2016-05-16 13:25:12 +00:00
|
|
|
|
|
|
|
<hr />
|
2016-05-29 10:37:14 +00:00
|
|
|
<h3>Payment</h3>
|
2016-05-29 10:29:38 +00:00
|
|
|
{% if not order.paid %}
|
|
|
|
<p class="lead">Your order is currently unpaid. Please pick a payment option below.</p>
|
2016-05-29 13:44:27 +00:00
|
|
|
<p><i>Once you go to the payment your order will be finalized and you
|
|
|
|
will no longer be able to change the products or quantities - so make sure
|
|
|
|
your order is correct before proceeding!</i></p>
|
2016-05-15 22:09:00 +00:00
|
|
|
<form method="POST">
|
|
|
|
{% csrf_token %}
|
2016-05-16 13:25:12 +00:00
|
|
|
{% bootstrap_button "<i class='glyphicon glyphicon-credit-card'></i> Credit card" button_type="submit" button_class="btn-primary" name="payment_method" value="credit_card" %}
|
|
|
|
{% bootstrap_button "<i class='glyphicon glyphicon-bitcoin'></i> Blockchain" button_type="submit" button_class="btn-primary" name="payment_method" value="blockchain" %}
|
|
|
|
{% bootstrap_button "<i class='glyphicon glyphicon-piggy-bank'></i> Bank transfer" button_type="submit" button_class="btn-primary" name="payment_method" value="bank_transfer" %}
|
2016-05-15 22:09:00 +00:00
|
|
|
</form>
|
2016-05-29 13:55:25 +00:00
|
|
|
<br>
|
2016-05-29 13:44:27 +00:00
|
|
|
<p><i>If you have already paid but your order is still showing unpaid,
|
|
|
|
you can <a href="mailto:info@bornhack.dk">email us</a> or use the
|
|
|
|
<a href="{% url 'contact' %}">contact</a> page for other options.
|
|
|
|
Please allow for up to a week for bank transfers to be registered,
|
|
|
|
the other payment methods should be more or less instant.</i></p>
|
2016-05-29 10:29:38 +00:00
|
|
|
{% else %}
|
|
|
|
<p class="lead">Your order is paid in full.</p>
|
|
|
|
{% endif %}
|
2016-05-06 20:33:59 +00:00
|
|
|
|
|
|
|
{% endblock %}
|