2021-04-30 04:51:13 +09:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
2020-12-02 02:56:31 +09:00
|
|
|
|
|
|
|
{% block title %}Actors{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2021-09-18 04:33:02 +09:00
|
|
|
<section class="section-widget section-widget-padded">
|
|
|
|
<div class="actors">
|
|
|
|
{% 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 %}
|
|
|
|
<h1>{% trans %}No actors here.{% endtrans %}</h1>
|
2020-12-02 02:56:31 +09:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2021-09-18 04:33:02 +09:00
|
|
|
</section>
|
|
|
|
{% endblock body %}
|