{% extends "base/document.html" %} {% load tz %} {% load crispy_forms_tags %} {% block title %} {% trans "Ingredient List" %} {% endblock %} {% block content %}

{% trans "Ingredient List" %}

{% include 'canteen/includes/_canteen_navigation.html' %}
{% if search_query %} {% trans "Clear" %} {% endif %}
{% trans "Add via template" %} {% trans "Add one" %} {% trans "Delete selected Ingredients" %}

{% for name, verbose_name in headers %} {% endfor %} {% for ingredient in page_obj %} {% empty %} {% endfor %}
{{ verbose_name }}
{{ ingredient.storage_date|date:"Y.m.d" }} {{ ingredient.name }} {{ ingredient.meal_type_t }} {{ ingredient.category_t }} {{ ingredient.quantity }} {{ ingredient.quantity_unit_name }} {{ ingredient.total_price }} {% if ingredient.is_ignorable %} {% trans "Yes" %} {% endif %} {% if ingredient.is_disabled %} {% trans "Yes" %} {% endif %} {% trans "Edit" %} | {% trans "Delete" %}
{% csrf_token %}
{% include 'includes/_paginator.html' %} {{ total_price_title|json_script:"total_price_title" }} {% endblock %}