{% trans "Order items attached to the order" %}.
{% extends "base_order.html" %} {% load i18n %} {% load rules %} {% block title %} {% trans 'View Order' %} {% endblock %} {% block content %} {% has_perm 'sous_chef.edit' request.user as can_edit_data %}
{% trans "Component" %} | {% trans "Description" %} | {% trans 'Total Quantity' %} | {% trans 'Billable' %} | {% trans 'Price' %} | {% for item in order.orders.all %}||||
---|---|---|---|---|---|---|---|---|
{{item.get_order_item_type_display}} | {{item.get_component_group_display}} | {{item.total_quantity}} | {{item.get_billable_flag_display}} | {% else %}{{item.get_order_item_type_display}} | {% endif %}{{item.price}} | |||
{% trans "Total" %} | {{ order.price }} |