{% extends 'stdgrid.html.twig' %}
{% block title %}{{ title }}{% endblock %}
{% block body %}
{% if actors_feed_title is defined %}
{{ actors_feed_title.getHtml() }}
{% endif %}
{% set prepend_actors_collection = handle_event('PrependActorsCollection', request) %}
{% for widget in prepend_actors_collection %}
{{ widget | raw }}
{% endfor %}
{% trans %}Ordering rules{% endtrans %}
{% trans %}Results{% endtrans %}
{% if actors is defined and actors is not empty %}
{% for actor in actors %}
{% block profile_view %}{% include 'cards/blocks/profile.html.twig' %}{% endblock profile_view %}
{% endfor %}
{% trans %}Page: %page%{% endtrans %}
{% else %}
{{ empty_message }}
{% endif %}
{% endblock body %}