{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load i18n crispy_forms_tags %} {% block content %}

HTML finished
{{ title }}

{% trans 'QR-code number' %} : {{ qrcode.qr_code_number }}

{% trans 'Name' %} : {{ qrcode.food_container.name }}

{% trans 'Owner' %} : {{ qrcode.food_container.owner }}

{% trans 'Expiry date' %} : {{ qrcode.food_container.expiry_date }}

{% if qrcode.food_container.polymorphic_ctype.model == 'basicfood' and can_update_basic %} {% trans 'Update' %} {% elif can_update_transformed %} {% trans 'Update' %} {% endif %} {% if can_add_ingredient %} {% trans 'Add the ingredient' %} {% endif %}
{% endblock %}