{{ render(path('app_shop_partial_availability_notifier_create', { 'productVariantId' : product.variants.first.id, 'template' : '@SyliusShop/Product/Show/_availability_notifier.html.twig' })) }}
{% if product.simple and product.variants.first is defined %}
{% if not sylius_inventory_is_available(product.variants.first) %}
{% if product.variants.first.restockingDate is not null %}
{% if product.variants.first.restockingDate|date('U') > 'now'|date('U') %}
<span class="text-danger">{{ 'app.product.the_product_will_be_available_on'|trans }} {{ product.variants.first.restockingDate|date('app.product.restocking_date_format'|trans) }}</span>
{% endif %}
{% endif %}
{% endif %}
{% endif %}