{% extends "base.html" %} {% block title %}Membership — {{ club.name }}{% endblock %} {% block content %}

{{ club.name }}

{{ member.display_name }}

{% if member.club.show_member_barcode %}
Membership number
{{ member.membership_number }}
{% if member.barcode_image_link %}
Membership barcode
{% endif %} {% endif %} {% if expiration %} {% if is_expired %}
Expired on {{ expiration|date:"M j, Y" }}.
{% else %}
Active — expires {{ expiration|date:"M j, Y" }}.
{% endif %} {% elif club.membership_annual_fee and is_expired %}
Expired
{% endif %} {% if membership_invoice %} {% include "partials/membership_payment_inline.html" %} {% elif club.membership_annual_fee and is_paid_member and not is_expired and not expiring_soon %}

You're all paid up. You can renew again when your membership is close to expiring.

{% endif %}
{% endblock %}