{% extends "base.html" %} {% load i18n %} {% load rules %} {% block title %}{% trans 'Pick Ingredients' %} {% endblock %} {% block content %} {% has_perm 'sous_chef.edit' request.user as can_edit_data %} {% include 'kitchen_count_steps.html' with step='ingredients' %}
{{form.errors}}
{% csrf_token %}
{{ form.maindish }}
{{ form.ingredients }}
{% if can_edit_data %}
{% endif %}
{{ form.sides_ingredients }}
{% if can_edit_data %} {% endif %}
{% endblock content %}