13 lines
532 B
Plaintext
13 lines
532 B
Plaintext
{% load humanize %}
|
|
As you requested, we've updated your account with the payment method you provided.
|
|
|
|
If you have any questions, we are happy to help. Simply email us at support@gluejar.com.
|
|
|
|
{% if user.profile.account %}
|
|
The current card we have on file:
|
|
Card type: {{ user.profile.account.card_type }}
|
|
Number: ************{{ user.profile.account.card_last4 }}
|
|
Expiration date: {{ user.profile.account.card_exp_month }}/{{ user.profile.account.card_exp_year }}.
|
|
We use Stripe to keep your information secure.
|
|
{% endif %}
|