{% extends "base.html" %} {% load i18n %} {% load rules %} {% block title %}{% trans 'Kitchen Count report' %} {% endblock %} {% block content %} {% has_perm 'sous_chef.edit' request.user as can_edit_data %} {% include 'kitchen_count_steps.html' with step='kitchen_count' %}
{% if num_pages > 0 %} {% trans "Kitchen Count" %} {% else %} {% trans "Kitchen Count" %} {% endif %} {% if num_labels > 0 %} {% trans "Labels" %} {% else %} {% trans "Labels" %} {% endif %}
{% for obj in component_lines %} {% endfor %}
{% trans 'Component' %} {% trans "TOTAL" %}
{% trans 'Regular' %}
{% trans "TOTAL" %}
{% trans 'Large' %}
{% trans 'Dish today' %} {% trans 'Ingredients today' %}
{{obj.component_group}} {{obj.rqty}} {{obj.lqty}} {{obj.name}} {{obj.ingredients}}
{% for obj in meal_lines %} {% if obj.span == "1" %} {% elif obj.span != "-1" %} {% endif %} {% if obj.client == "SUBTOTAL" %} {% else %} {% endif %} {% endfor %}
{% trans 'Clashing ingredients' %} {% trans 'Qty' %} - {% trans 'Reg' %} {% trans 'Qty' %} - {% trans 'Lge' %} {% trans 'Client' %} {% trans 'Restrictions' %}
{{obj.ingr_clash}}{{obj.ingr_clash}}{{obj.rqty}} {{obj.lqty}} {{obj.client}}{{obj.rqty}} {{obj.lqty}} {{obj.client}}{{obj.rest_ingr}}{% if obj.rest_ingr %} ; {% endif %} {{obj.rest_item}}
{% if can_edit_data %}
{% trans "Back" %} {% trans "Next: Organize Routes" %}
{% endif %} {% endblock %}