{% extends "base.html" %} {% load static %} {% load i18n %} {% block content %}
{% trans "customer listing" %}
| {% trans "account number" %} | {{ object.account_number }} |
| {% trans "credit limit" %} | {{ object.credit_limit }} |
| {% trans "low credit alert" %} | {{ object.low_credit_alert }} |
| {% trans "max simultaneous calls" %} | {{ object.max_calls }} |
| {% trans "calls per second limit" %} | {{ object.calls_per_second }} |
| {% trans "enabled" %} | {{ object.customer_enabled }} |
| {% trans "created" %} | {{ object.created }} |
| {% trans "modified" %} | {{ object.modified }} |