{% extends "admin/base.html" %}
{% load i18n humanize %}
{% if not is_popup %}{% block breadcrumbs %}
{% block subheading %}
{
{% endblock %}
{% trans "Account Metadata" %}
{% trans "Description" %} | {{account.description}} |
{% trans "Memo" %} | {{account.memo}} |
{% trans "Contact" %} | {{account.contact|linebreaks}} |
{% trans "Balance" %} | {{account.balance|stringformat:"01.2f"|intcomma}} |
{% block object-tools %}
{% endblock %}
{% if editable %}
{% else %}
{% trans "Rate Plan" %}
{% for rate in account.rateplan.rating_set.all %}
{{rate.chargeDescription}} | {{rate.chargeType}} |
{{rate.amount}} | {{rate.minChargeUnits}} | {{rate.chargeIncrement}} |
{% endfor %}
{% endif %}
{% endblock %}