{% extends 'layout/base.html.twig' %} {% form_theme form 'bootstrap_5_layout.html.twig' %} {% block body %} {% include 'components/layout/_back_to_link.html.twig' with { name: 'templates.pages.account.loans.new.back_to_article'|trans, link: { name: 'app_product_show', params: { 'slug': product.slug, 'id': product.id } } } %} {% include 'components/layout/_title_3.html.twig' with { name: 'templates.pages.account.loans.new.title'|trans } %} {{ form_start(form, { attr: { novalidate: true, } }) }}
{% if product.images is not empty %} {{ product.name }} {% elseif product.category.image is not empty %} {{ product.category.name }} {% else %} {{ product.category.name }} {% endif %}
{{ product.name }} {% if product.category.parent is not null %} {{ product.category.parent }} / {{ product.category }} {% else %} {{ product.category }} {% endif %}
{% include 'components/product/_calendar.html.twig' with { title: 'product.new.calendar_title'|trans, form: form, actionNeeded: false } %}
{% include 'components/product/_write_message.html.twig' with { form: form } %}
{{ form_end(form) }} {% endblock %} {% block link %}{% endblock %}