{% extends 'superuser/base_superuser.html' %} {% block title %}Clients | Superuser Console{% endblock %} {% block clients_active %}active{% endblock %} {% block workspace %}
Manage registered clients and their connected pages.
| # | Client Name | Connected Page | Subscription Status | Set Limit | Usage (Spent / Left) | FB Connect Test | Actions |
|---|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ company.name }} | {% if company.fb_messenger_enabled and company.fb_page_id %} FB Page ID: {{ company.fb_page_id }} {% elif company.whatsapp_enabled and company.wa_phone_number_id %} WA Phone: {{ company.wa_phone_number_id }} {% elif company.allowed_domain %} Web: {{ company.allowed_domain }} {% else %} Not Connected {% endif %} | {% if company.subscription_valid_until %} {% if company.subscription_valid_until < today %} Expired ({{ company.subscription_valid_until }}) {% else %} Active (Expires {{ company.subscription_valid_until }}) {% endif %} {% else %} No Validation Date {% endif %} | {% if company.message_limit > 0 %} {{ company.message_limit }} {% else %} Unlimited {% endif %} | {% if company.message_limit > 0 %} {{ company.message_count }} / {% if company.message_remaining == 0 %} 0 (Exhausted) {% else %} {{ company.message_remaining }} {% endif %} {% else %} {{ company.message_count }} / Unlimited {% endif %} | {% if company.fb_messenger_enabled and company.fb_page_id %} {% else %} N/A {% endif %} |