2015-04-28 03:24:02 +00:00
{% extends 'notification/notice_template.html' %}
{% load url from future %}
2013-02-27 23:18:32 +00:00
{% load humanize %}
2013-04-17 22:43:44 +00:00
{% block comments_graphical %}
Your credit card is about to expire
{% endblock %}
2013-02-27 23:18:32 +00:00
2013-04-17 18:42:49 +00:00
2013-04-17 22:43:44 +00:00
{% block comments_textual %}
< p > We want to give you advance notice that your {{ user.profile.account.card_type }} card ending
in {{ user.profile.account.card_last4 }} will expire this month.
When you receive your new card, simply go to
2015-04-28 03:24:02 +00:00
< a href = "https://{{ site.domain }}{% url 'manage_account' %}" > Accounts & Pledges< / a >
2013-04-17 18:42:49 +00:00
to enter your card information. Thank you!< / p >
2015-08-18 15:03:49 +00:00
< p > If you have any questions, we are happy to help. Simply < a href = "{% url 'feedback' %}?page={{request.build_absolute_uri|urlencode:" " } } " > contact us< / a > .< / p >
2013-04-17 18:42:49 +00:00
2013-04-17 22:43:44 +00:00
{% if user.profile.account %}
2013-04-17 18:42:49 +00:00
< p > The current card we have on file:< / p >
2013-04-17 22:43:44 +00:00
< 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 / >
2013-04-17 18:42:49 +00:00
< p > We use < a href = "https://stripe.com/" > Stripe< / a > to keep your information secure.< / p > < br / >
{% endif %}
2013-02-27 23:18:32 +00:00
{% endblock %}