{% extends 'spectator_core/base.html' %} {% load l10n %} {% block head_page_title %}{{ creator.name }}{% endblock %} {% block content_title %}{{ creator.name }}{% endblock %} {% block breadcrumbs %} {{ block.super }} {% endblock %} {% block content %} {% if creator.publications.count > 0 %}

Publications

{% include 'spectator_reading/includes/publications.html' with publication_list=creator.publications.all show_readings='none' show_thumbnails=True only %} {% endif %} {% if creator.events.count > 0 %}

Events

{% include 'spectator_events/includes/events.html' with event_list=creator.get_events %} {% endif %} {% include 'spectator_events/includes/works.html' with work_list=creator.get_movies heading="Movies" only %} {% include 'spectator_events/includes/works.html' with work_list=creator.get_plays heading="Plays" only %} {% include 'spectator_events/includes/works.html' with work_list=creator.get_classical_works heading="Classical works" only %} {% include 'spectator_events/includes/works.html' with work_list=creator.get_dance_pieces heading="Dance pieces" only %} {% include 'spectator_events/includes/works.html' with work_list=creator.get_exhibitions heading="Exhibitions" only %} {% endblock content %} {% block sidebar_nav %} {% load spectator_core %} {% change_object_link_card object perms %} {{ block.super }} {% endblock sidebar_nav %}