{% extends "base.html" %} {% block title %}Billing History - healthchecks.io{% endblock %} {% block content %}

Billing History

{% for tx in transactions %} {% empty %} {% endfor%}
Date Payment Method Amount Status
{{ tx.created_at }} {% if tx.payment_instrument_type == "paypal_account" %} Paypal from {{ tx.paypal.payer_email }} {% endif %} {% if tx.payment_instrument_type == "credit_card" %} {{ tx.credit_card.card_type }} ending in {{ tx.credit_card.last_4 }} {% endif %} {% if tx.currency_iso_code == "USD" %} ${{ tx.amount }} {% elif tx.currency_iso_code == "EUR" %} €{{ tx.amount }} {% else %} {{ tx.currency_iso_code }} {{ tx.amount }} {% endif %} {{ tx.status }} View Invoice
No past transactions to display here

Bill to:

{% if request.user.profile.bill_to %} {{ request.user.profile.bill_to|linebreaksbr }} {% else %} {{ request.user.email }} {% endif %}

{% endblock %}