{% extends 'admin/base.html.twig' %} {% block title %}{{ recipe.title }}{% endblock %} {% block body %}
{{ include('admin/partials/page_title.html.twig', { 'icon': "", 'title': recipe.title, 'links': [ { 'url': path('admin.recipe.index'), 'label': "" ~ 'app.admin.recipes.title'|trans, 'class': 'btn_page_title_overflow btn-primary btn' } ] }) }}
{% if recipe.thumbnail is not empty and recipe.thumbnail.url is not empty %} {{ recipe.thumbnail.title }} {% else %} placeholder {% endif %}
{% if recipe.category is defined and recipe.category.title is defined and recipe.category.title is not empty %} {{ recipe.category.title }} {% else %} --- {% endif %}
{{ include('admin/recipe/_form.html.twig', {'button_label': ""|raw}) }}
{% if recipe.content is not empty %}
{{ recipe.content | raw | nl2br }}
{% endif %}
{{ include('admin/recipe/_form_to_list.html.twig') }}
{% endblock %}