{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}Membership Settings — {{ club.name }}{% endblock %} {% block content %} {{ form.media }} {% include "club_ribbon.html" %} {% crispy form %}
Connect a PayPal or Square account so members can pay dues directly on this site, and so auctions tied to this club can accept payments.
{# ---- PayPal ---- #}OAuth account is linked from {{ paypal_seller.user.username }}.
{% elif not paypal_configured %}PayPal isn't configured on this site.
{% elif user_paypal_seller %}Your account {{ user_paypal_seller.payer_email|default:user_paypal_seller.user.username }} will be used for this club's payments. Auctions you've created personally will continue to use the same account.
{% elif request.user.userdata.paypal_enabled %} Connect a PayPal account for this clubYou'll be sent to PayPal to authorize, and then back here.
{% endif %} {% endif %}{# /allow_non_oauth_paypal #}OAuth account is linked from {{ square_seller.user.username }}.
{% elif not square_configured %}Square isn't configured on this site.
{% elif user_square_seller %}Your account {{ user_square_seller.payer_email|default:user_square_seller.user.username }} will be used for this club's payments.
{% elif request.user.userdata.square_enabled %} Connect a Square account for this clubYou'll be sent to Square to authorize, and then back here.
{% endif %}