{% extends 'base.html' %} {% block title %}Customers - Optinet Global Links{% endblock %} {% block content %}

Customers ({{ customers|length }})

Clear
Showing {{ customers|length }} customers
Bulk SMS
{% csrf_token %}
0/160 characters
{{ customers|length }} customers selected
Based on current filters
{% if customers %}
{% for customer in customers %} {% endfor %}
Customer ID Name Type Phone Email 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" }}
{% if is_paginated %} {% endif %} {% else %}

No customers found

Try adjusting your search criteria or add a new customer.

Add Customer
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}