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-12-26 02:59:49 +09:00
|
|
|
<section class="section-widget section-padding">
|
2021-09-18 05:51:55 +09:00
|
|
|
<h2 class="section-title">{{ "Actors" | trans }}</h2>
|
|
|
|
|
2021-12-26 02:59:49 +09:00
|
|
|
<div class="section-padding">
|
2021-09-18 04:33:02 +09:00
|
|
|
{% if actors is defined and actors is not empty %}
|
|
|
|
{% for actor in actors %}
|
2021-09-22 22:10:36 +09:00
|
|
|
{% block profile_view %}{% include 'cards/profile/view.html.twig' %}{% endblock profile_view %}
|
2021-12-26 02:59:49 +09:00
|
|
|
<hr>
|
2021-09-18 04:33:02 +09:00
|
|
|
{% 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 %}
|