{% extends "base.html" %} {% block title %}Pay Membership — {{ club.name }}{% endblock %} {% block content %} {% include "club_ribbon.html" %}
Club membership payment

Club: {{ club.name }}

Annual membership fee: {{ invoice.currency_symbol }}{{ club.membership_annual_fee }}

{% if invoice.show_paypal_button or invoice.show_square_button %}

Select a payment method to pay your membership dues.

{% if invoice.show_paypal_button %}
{% csrf_token %}
{% endif %} {% if invoice.show_square_button %}
{% csrf_token %}
{% endif %} {% else %}

Online payment is not currently available. Please contact the club for payment arrangements.

{% endif %}
{% endblock %}