{% extends 'base.html' %} {% block title %}Customers - Optinet Global Links{% endblock %} {% block content %}
Customer ID | Name | Type | Phone | Service | Status | Created | |
---|---|---|---|---|---|---|---|
{{ customer.customer_id }} |
{{ customer.display_name }}
{% if customer.customer_type == 'institution' and customer.contact_person_full_name %}
Contact: {{ customer.contact_person_full_name }}
{% endif %}
|
{{ customer.get_customer_type_display }} | {{ customer.phone }} | {{ customer.email }} | {% if customer.service %} {{ customer.service.name }} {{ customer.service.speed_mbps }}Mbps {% else %} No Service {% endif %} | {% if customer.service_status == 'suspended' %} Suspended {% elif customer.is_active %} Active {% else %} Inactive {% endif %} | {{ customer.created_at|date:"M d, Y" }} {{ customer.created_at|date:"H:i" }} |