21 lines
903 B
HTML
21 lines
903 B
HTML
{% extends "notification/notice_template.html" %}
|
|
{% load humanize %}
|
|
|
|
{% block comments_graphical %}
|
|
Payment method updated
|
|
{% endblock %}
|
|
|
|
{% block comments_textual %}
|
|
<p>As you requested, we've updated your account with the payment method you provided.</p>
|
|
|
|
<p>If you have any questions, we are happy to help. Simply email us at
|
|
<a href="mailto:support@gluejar.com">support@gluejar.com</a>.</p>
|
|
|
|
{% if user.profile.account %}
|
|
<p>The current card we have on file:</p>
|
|
<b>Card type:</b> {{ user.profile.account.card_type }}<br />
|
|
<b>Number:</b> ************{{ user.profile.account.card_last4 }}<br />
|
|
<b>Expiration date:</b> {{ user.profile.account.card_exp_month }}/{{ user.profile.account.card_exp_year }}.<br />
|
|
<p>We use <a href="https://stripe.com/">Stripe</a> to keep your information secure.</p><br />
|
|
{% endif %}
|
|
{% endblock %} |