{% extends 'base.html' %} {% load render_bundle from webpack_loader %} {% load static mep_tags %} {% block page-subtitle %}{{ member.firstname_last }} Cards · Library Members · {% endblock %} {% block js %} {% render_bundle 'activities' 'js' %} {% endblock %} {% block header %} {% include 'snippets/header.html' with title=member.firstname_last style="detail" %} {% endblock %} {% block main-style %}tabbed white{% endblock %} {% block content %} {% include 'snippets/breadcrumbs.html' %}
{% if cards %}
    {% for card in cards %}
  1. {# card thumbnails and year if known #} {% with card.image|iiif_image:"size:width=225" as 1xthumbnail %} {% endwith %} {% with card.footnote_set.event_date_range as dates %}
    Card Years {% if dates.0 %}{{ dates.0.year }} {% if dates.0.year != dates.1.year %} – to{{ dates.1.year }}{% endif %} {% elif card.footnote_set.exists %} Unknown {% endif %}
    {% endwith %}
  2. {% endfor %}
{% elif member.card %} {# show bibliographic citation if a member has a card but no images are available #}

{{ member.card.bibliographic_note|urlize }}

{% else %}
No lending library cards available.
{% endif %} {% if member.card.notes %}
{{ member.card.notes|urlize }}
{% endif %} {% if cards.0.manifest %} {% include 'people/snippets/manifest_license.html' with manifest=cards.0.manifest %} {% endif %}
{% endblock %}