{% extends "hosting/base_short.html" %} {% load staticfiles bootstrap3 i18n %} {% block css_extra %} {% endblock css_extra %} {% block content %}
{% include 'hosting/includes/_messages.html' %}

{% trans "My Settings" %}

{%trans "Billing Address" %}


{% csrf_token %} {% for field in form %} {% bootstrap_field field show_label=False type='fields' bound_css_class='' %} {% endfor %}

{%trans "Credit Card" %}


{% with card_list_len=cards_list|length %} {% for card in cards_list %}
{% trans "Credit Card" %}
{% trans "Last" %} 4: ***** {{card.last4}}
{% trans "Type" %}: {{card.brand}}
{% if card_list_len > 1 %}
{% trans "REMOVE CARD" %}
{% endif %}
{% if card.preferred %} {% trans "DEFAULT" %} {% else %}
{% csrf_token %} {% trans "SELECT" %}
{% endif %}
{% empty %}

{% trans "No Credit Cards Added" %}

{% blocktrans %}We are using Stripe for payment and do not store your information in our database.{% endblocktrans %}

{% endfor %} {% endwith %}

{% trans "Add a new credit card" %}


{%trans "New Credit Card" %}


{% include "hosting/includes/_card_input.html" %}
{% if stripe_key %} {% get_current_language as LANGUAGE_CODE %} {%endif%} {%endblock%}