diff --git a/apimanager/customerlist/templates/customerlist/customerlist.html b/apimanager/customerlist/templates/customerlist/customerlist.html index 9e2ca44..a08b207 100644 --- a/apimanager/customerlist/templates/customerlist/customerlist.html +++ b/apimanager/customerlist/templates/customerlist/customerlist.html @@ -5,39 +5,40 @@
-
- - - - - - - - - {% for customer in customer_list %} +
+
{% trans "Customer Id" %}{% trans "Bank Id" %}{% trans "Customer Name" %}{% trans "More info" %}
+ + + + + + + - {% url 'customers_update' customer.id customer.bank_id as url_customer_update %} - - - - - - - - {% endfor %} - -
{% trans "Customer Id" %}{% trans "Bank Id" %}{% trans "Customer Name" %}{% trans "More info" %}
{{ customer.id }}{{ customer.bank_id }}{{ customer.name }} -
-
    -
  • {% trans "Other Info" %}: -
      -
    • line1: {{customer.email}}
    • -
    -
  • -
-
-
{% trans "View" %}
-
+ {% for customer in customers_list %} + + {% url 'customers_update' customer.customer_id customer.bank_id as url_customer_update %} + + {{ customer.customer_id }} + {{ customer.bank_id }} + {{ customer.legal_name }} + +
+ +
+ + {% trans "View" %} + + {% endfor %} + + + {% endblock %} {% block extrajs %} {% endblock extrajs %} {% block extracss %} {% endblock extracss %} \ No newline at end of file