{% extends "base.html" %} {% load static %} {% load i18n %} {% block content %}

{% trans "customer listing" %}

{% for object in object_list %} {% endfor %}
ID{% trans "link" %} {% trans "credit_limit" %} {% trans "max_calls" %} {% trans "calls_per_second" %} {% trans "customer_enabled" %}
{{object.pk}} {{object}} {{ object.credit_limit }} {{ object.low_credit_alert }} {{ object.max_calls }} {{ object.calls_per_second }} {{ object.customer_enabled }}
{% trans "create new customer" %} {% endblock %}