actors.html.twig 621 B

12345678910111213141516171819
  1. {% extends 'stdgrid.html.twig' %}
  2. {% block title %}Actors{% endblock %}
  3. {% block body %}
  4. <section class="section-widget section-widget-padded">
  5. <h2 class="section-title">{{ "Actors" | trans }}</h2>
  6. <div class="section-widget-padded">
  7. {% if actors is defined and actors is not empty %}
  8. {% for actor in actors %}
  9. {% block profile_view %}{% include 'cards/profile/view.html.twig' %}{% endblock profile_view %}
  10. {% endfor %}
  11. {% else %}
  12. <h1>{% trans %}No actors here.{% endtrans %}</h1>
  13. {% endif %}
  14. </div>
  15. </section>
  16. {% endblock body %}