ebs/templates/pages/product/show.html.twig
2023-12-21 08:49:38 +01:00

28 lines
970 B
Twig

{% extends 'layout/base.html.twig' %}
{% block body %}
{% include 'components/layout/_back_to_link.html.twig' with {
name: 'templates.pages.product.show.back_to_search'|trans,
link: {
name: 'app_product_list'
}
} %}
<div class="grid-template-product my-4">
{% include 'components/product/_info.html.twig' with {product: product} %}
{% include 'components/product/_lender.html.twig' with {
avatar: product.owner.avatar,
name: product.owner.displayName,
isPlace: product.owner.isPlace,
address: product.owner.address,
schedule: product.owner.schedule
} %}
<div class="mt-4">
{% include 'components/product/_calendar.html.twig' with {
title: 'product.show.calendar_title'|trans,
actionNeeded: true
} %}
</div>
</div>
{% endblock %}
{% block link %}{% endblock %}