{% extends "base.html" %} {% load compress static 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 %} {{ sub.plan_name }} {% endif %}
Next Payment loading…
Checks Used = profile.check_limit %} class="at-limit" {% endif %}> {{ num_checks }} of {{ profile.check_limit }}
Team Size = profile.team_limit %} class="at-limit" {% endif %}> {{ team_size }} of {% if profile.team_limit == 500 %} unlimited {% else %} {{ team_max }} {% endif %}
{% if set_plan_status == "success" %} {% endif %}

Payment Method

{% if sub.payment_method_token %}

loading…

{% else %}

Not set

{% endif %}
{% if payment_method_status == "success" %} {% endif %}

Billing Details

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

Not set

{% endif %}
{% if address_status == "success" %} {% endif %}

Invoices to Email

{% if sub.send_invoices %} Send the invoice to {{ sub.invoice_email|default:request.user.email }} each time my payment method is successfully charged. {% else %} Do not email invoices to me. {% endif %}

{% if send_invoices_status == "success" %} {% endif %}

Billing History

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