{% endif %}
{{ form_row(search_form.submit_search) }}
{{ form_rest(search_form) }}
{{ form_end(search_form)}}
{% trans %}Build a search query{% endtrans %}
{{ form_start(search_builder_form) }}
{# actor options, display if first checked, with checkbox trick #}
{% trans %}People search options{% endtrans %}
{% if notes is defined and notes is not empty %}
{{ parent() }}
{% else %}
{% trans %}No notes found{% endtrans %}
{% trans %}No notes were found for the specified query...{% endtrans %}
{% endif %}
{% trans %}Actors found{% endtrans %}
{% if actors is defined and actors is not empty %}
{% for actor in actors %}
{% include 'cards/blocks/profile.html.twig' with {'actor': actor} %}
{% endfor %}
{% else %}
{% trans %}No Actors were found for the specified query...{% endtrans %}
{% endif %}