{% trans %}Results{% 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/profile/view.html.twig' with {'actor': actor} %}
{% endfor %}
{% else %}
{% trans %}No Actors were found for the specified query...{% endtrans %}
{% endif %}
{{ "Page: " ~ page }}
{% endblock body %}