{% extends 'admin/base.html.twig' %} {% block title %}{{ 'app.admin.ingredients.title'|trans }}{% endblock %} {% block body %} {{ include('admin/partials/page_title.html.twig', { 'icon': "", 'title': 'app.admin.ingredients.title'|trans, 'links': [ { 'url': path('admin.section.index'), 'label': 'app.admin.sections.title'|trans ~ "", 'class': 'btn_page_title_overflow btn-primary btn' } ] }) }}
{#
{{ include('admin/ingredient/_form.html.twig') }}
#} {# total items count #}
{{ 'app.admin.lists.count'|trans({'%entity%': 1}) }} : {{ ingredients.getTotalItemCount }}
{# sorting of properties based on query components #} {{ knp_pagination_sortable(ingredients, 'Title', 'i.title') }} {# table body #} {% for ingredient in ingredients %} {% else %} {% endfor %}
Sections Recipes ready {{ knp_pagination_sortable(ingredients, 'Slug', 'i.slug') }} Actions
{{ ingredient.title }} {{ ingredient.section.title | default('---') }} {% if ingredient.availableRecipe is not empty %}
{% else %}
{% endif %}
{{ ingredient.slug }} {{ include('admin/ingredient/_delete_form.html.twig') }}
{{ 'app.err.norecordfound'|trans }}
{# display navigation #}
{% endblock %} {% block outside_body %} {% endblock %}