{% extends 'collection/notes.html.twig' %}
{% block body %}
{% if error is defined %}
{% endif %}
{% trans %}Search{% endtrans %}
{{ form_start(search_form) }}
{{ form_errors(search_form) }}
{{ form_row(search_form.search_query) }}
{% if actor is not null %}
{% trans %}Other options{% endtrans %}
{{ icon('arrow-down', 'icon icon-details-open') | raw }}
{% trans %}Save query as a feed{% endtrans %}
{{ icon('arrow-down', 'icon icon-details-open') | raw }}
{% if notes is defined and notes is not empty %}
{{ parent() }}
{% else %}
{% 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/profile/view.html.twig' with {'actor': actor} %}
{% endfor %}
{% else %}
{% trans %}No Actors were found for the specified query...{% endtrans %}
{% endif %}