{% extends bap.layout %} {% import '@OroDataGrid/macros.html.twig' as dataGrid %} {% oro_title_set({ params: { '%keyword%': searchString|default('oro.search.result.empty'|trans) } }) %} {% set gridName = 'search-grid' %} {% block content %}

{% trans %}Search results{% endtrans %}

{% if groupedResults is defined and '' in groupedResults|keys and groupedResults[''].count > 0 or groupedResults|length > 1 %} {% set togglerId = 'dropdown-'|uniqid %}
{{ dataGrid.renderGrid(gridName, {from: from, search: searchString}, { cssClass: 'search-grid grid-without-header' }) }}
{% else %}
{% trans %}No results were found to match your search.{% endtrans %}
{% trans %}Try modifying your search criteria or creating a new ...{% endtrans %}
{% endif %} {% endblock %}