2021-04-30 04:51:13 +09:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
2020-12-02 02:56:31 +09:00
|
|
|
|
2022-01-02 06:52:30 +09:00
|
|
|
{% block title %}{{ title }}{% endblock %}
|
2020-12-02 02:56:31 +09:00
|
|
|
|
|
|
|
{% block body %}
|
2021-12-26 02:59:49 +09:00
|
|
|
<section class="section-widget section-padding">
|
2022-01-02 06:52:30 +09:00
|
|
|
<h2 class="section-title">{{ title }}</h2>
|
2021-09-18 05:51:55 +09:00
|
|
|
|
2022-01-02 07:17:26 +09:00
|
|
|
<div>
|
|
|
|
<p>{% trans %}Sort by:{% endtrans %}</p>
|
|
|
|
{% for option in sort_options %}
|
|
|
|
<a {{ option.active ? 'class="active"' : '' }} href="{{ option.url }}">{{ option.label }}</a>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
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 %}
|
2022-01-02 06:52:30 +09:00
|
|
|
<p>{% trans %}Page: %page%{% endtrans %}</p>
|
2021-09-18 04:33:02 +09:00
|
|
|
{% else %}
|
2022-01-02 06:52:30 +09:00
|
|
|
<h3>{{ empty_message }}</h3>
|
2020-12-02 02:56:31 +09:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2021-09-18 04:33:02 +09:00
|
|
|
</section>
|
2022-01-02 06:52:30 +09:00
|
|
|
{% endblock body %}
|