92 lines
2.6 KiB
HTML
92 lines
2.6 KiB
HTML
{% extends 'shop_base.html' %}
|
|
{% load bootstrap3 %}
|
|
{% load shop_tags %}
|
|
|
|
{% block shop_content %}
|
|
|
|
<h1>Order #{{ order.id }}</h1>
|
|
|
|
{% if not order.open == None %}
|
|
<form method="POST" class="form-inline">
|
|
{% csrf_token %}
|
|
{% endif %}
|
|
|
|
<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>
|
|
{% 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 %}
|
|
{{ order_product.quantity }}
|
|
{% endif %}
|
|
<td>
|
|
{{ order_product.product.price|currency }}
|
|
<td>
|
|
{{ order_product.total|currency }}
|
|
|
|
{% endfor %}
|
|
|
|
<tr>
|
|
<td colspan="2">
|
|
<td>
|
|
<strong>Hereof VAT (25%)</strong>
|
|
<td>
|
|
{{ order.vat|currency }}
|
|
|
|
<tr>
|
|
<td colspan="2">
|
|
<td>
|
|
<strong>Total</strong>
|
|
<td>
|
|
{{ order.total|currency }}
|
|
|
|
</table>
|
|
|
|
{% if not order.open == None %}
|
|
{% bootstrap_button "Update order" button_type="submit" button_class="btn-primary" name="update_order" %}
|
|
{% endif %}
|
|
|
|
<hr />
|
|
<h3>Payment</h3>
|
|
{% if not order.paid %}
|
|
<p class="lead">Your order is currently unpaid. Please pick a payment option below.</p>
|
|
<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>
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{% 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" %}
|
|
</form>
|
|
{% else %}
|
|
<p class="lead">Your order is paid in full.</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|