custom/plugins/DevertPdfExport/src/Resources/views/storefront/component/product/listing.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/listing.html.twig' %}
    
    {% block element_product_listing_sorting %}
        {% block pdfexport_listing_button_download %}
            {% if config('DevertPdfExport.config.active') and config('DevertPdfExport.config.listingExportActive') and searchResult and searchResult.currentFilters and searchResult.currentFilters.navigationId %}
                <a href="{{ path('frontend.pdfexport.listing', app.request.query.all|merge({'navigationId': searchResult.currentFilters.navigationId})) }}"
                    target="_blank"
                    rel="nofollow"
                    class="btn btn-secondary justify-center pdfexport-btn-listing">
                    {% block pdfexport_listing_button_download_text %}
                        {{ "pdfexport.listing.buttondownload"|trans|sw_sanitize }}
                    {% endblock %}
                </a>
            {% endif %}
        {% endblock %}
    
        {{ parent() }}
    {% endblock %}