{% extends 'base.html' %} {% load render_bundle from webpack_loader %} {% load static humanize %} {% block page-subtitle %}{{ work.title }} Circulation · Library Holdings · {% endblock %} {% block js %} {% render_bundle 'activities' 'js' %} {% endblock %} {% block header %} {% include 'snippets/header.html' with title=work.title style="detail" %} {% endblock %} {% block main-style %}tabbed white{% endblock %} {% block content %} {# breadcrumbs & tabs #} {% include 'snippets/breadcrumbs.html' %} {# circulation activity table #}
{% if not event_list.count %}

No documented circulation activity.

{% else %}
{% for event in event_list %} {% with event.event_label as event_label %} {% with member=event.account.persons.first %} {% endwith %} {% endwith %} {% endfor %}
Member Start Date End Date Status Volume/Issue
{% for member in event.account.persons.all %} {{ member.firstname_last }} {% endfor %} {{ event.partial_start_date|partialdate|default:'-' }} {{ event.partial_end_date|partialdate|default:'-' }} {% if event_label == 'Generic' %} - {% else %}{{ event_label }}{% endif %} {% if not event.edition %} - {% else %}{{ event.edition.display_html }}{% endif %}
{% endif %}
{% endblock %}