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

{{ title }} {% trans 'number' %} {{ qrcode.qr_code_number }}

{% if qrcode.food_container.polymorphic_ctype.model == 'basicfood' and can_update_basic %} {% trans 'Update' %} {% elif can_update_transformed %} {% trans 'Update' %} {% endif %} {% if can_view_detail %} {% trans 'View details' %} {% endif %} {% if can_add_ingredient %} {% trans 'Add to a meal' %} {% endif %}
{% endblock %}