{% extends "base.html" %} {% load compress staticfiles hc_extras %} {% block title %}Account Settings - {% site_name %}{% endblock %} {% block content %}

Settings

{% if messages %}

We're sorry! There was a problem setting up the subscription. Response from payment gateway:

{% for message in messages %}

{{ message }}

{% endfor %}
{% endif %}

Billing Plan

{% if sub.plan_id %} {% endif %}
Current Plan {% if sub is None or sub.plan_id == "" %} Free {% else %} {% if sub.plan_id == "P5" or sub.plan_id == "Y48" %} Standard {% endif %} {% if sub.plan_id == "P50" or sub.plan_id == "Y480" %} Plus {% endif %} (${{ sub.price }}/{{ sub.period }}) {% endif %}
Next Payment loading…
Checks Used {{ num_checks }} of {% if sub.plan_id %} unlimited {% else %} {{ profile.check_limit }} {% endif %}
Team Size {{ team_size }} of {% if profile.team_limit == 500 %} unlimited {% else %} {{ team_max }} {% endif %}

Payment Method

{% if sub.payment_method_token %}

loading…

{% else %}

Not set

{% endif %}

Billing Address

{% if sub.address_id %}
loading…
{% else %}

Not set

{% endif %}
{% if status == "info" %} {% endif %}

Billing History

loading…
{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}