{% extends "base/content.html" %} {% load crispy_forms_tags %} {% block title %} {% blocktrans with instance_name=form.instance.name %} Delete Ingredient {{ instance_name }} {% endblocktrans %} {% endblock %} {% block content %}
{% blocktrans with instance_name=form.instance.name%} Delete Ingredient {{ instance_name }} . {% endblocktrans %}

{% for field in form %}
{{ field.label }}
{{ field.value }}
{% endfor %}

{% blocktrans %} Are you sure you want to delete this ingredient? This operation is irreversible. {% endblocktrans%}

{% csrf_token %}
{% endblock %}