{% 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 #}
No documented circulation activity.
{% else %}| Member | Start Date | End Date | Status | Volume/Issue |
|---|---|---|---|---|
| {% for member in event.account.persons.all %} {{ member.firstname_last }} {% endfor %} | {% endwith %}{{ 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 %} |