2021-04-29 20:51:13 +01:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
2020-12-01 17:56:31 +00:00
|
|
|
|
|
|
|
{% block title %}Actors{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2021-09-17 20:33:02 +01:00
|
|
|
<section class="section-widget section-widget-padded">
|
2021-09-17 21:51:55 +01:00
|
|
|
<h2 class="section-title">{{ "Actors" | trans }}</h2>
|
|
|
|
|
|
|
|
<div class="section-widget-padded">
|
2021-09-17 20:33:02 +01:00
|
|
|
{% if actors is defined and actors is not empty %}
|
|
|
|
{% for actor in actors %}
|
2021-09-22 14:10:36 +01:00
|
|
|
{% block profile_view %}{% include 'cards/profile/view.html.twig' %}{% endblock profile_view %}
|
2021-09-17 20:33:02 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<h1>{% trans %}No actors here.{% endtrans %}</h1>
|
2020-12-01 17:56:31 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2021-09-17 20:33:02 +01:00
|
|
|
</section>
|
|
|
|
{% endblock body %}
|