haldis/app/templates/order.html

25 lines
1.1 KiB
HTML
Raw Normal View History

{% extends "layout.html" %}
{% set active_page = "orders" -%}
2015-03-27 23:44:58 +00:00
{% import "bootstrap/wtf.html" as wtf %}
{% block container %}
<div class="row">
2015-03-27 23:44:58 +00:00
<div class="col-md-7"><!-- Shitty html-->
<h3>Order {{ order.id }}</h3>
Courrier: {{ order.courrier.username }}<br/>
Location: <a href="{{ order.location.website }}">{{ order.location.name }}</a><br/>
Starttime: {{ order.starttime }}<br/>
Stoptime: {{ order.stoptime }}<br/>
2015-03-27 23:44:58 +00:00
Total price: {{ total_price|euro }}
<h3>Orders</h3>
{% for item in order.orders %}
2015-03-27 23:44:58 +00:00
{{ item.user.username }} - {{ item.food.name }} - {{ item.food.price|euro }}
{% if item.can_delete(order.id, current_user.id) -%}<a href="{{ url_for('.delete_item', order_id=order.id, item_id=item.id) }}"><span class="glyphicon glyphicon-remove"></span></a>{%- endif %}<br/>
{% endfor %}
</div>
2015-03-27 23:44:58 +00:00
<div class="col-md-push-1 col-md-4">
<h4>Order:</h4>
{{ wtf.quick_form(form, action=url_for('.order_create'), button_map={'submit_button': 'primary'}, form_type='horizontal') }}
</div>
</div>
{% endblock %}