{% extends 'stdgrid.html.twig' %}
{% block title %}Actors{% endblock %}
{% block body %}
{% if actors is defined and actors is not empty %}
{% for actor in actors %}
{% include 'directory/actor.html.twig' with {'actor': actor, 'have_user': have_user} only %}
{% endfor %}
{% else %}