{% extends "base.html" %} {% block title %}My Clients - RAZOR SMS PANEL{% endblock %} {% block content %}
Client List
Add New Client
{% if clients.items %} {% for client in clients.items %} {% endfor %} {% else %} {% endif %}
Username Email Name Company Country API Token Status Created Actions
{{ client.username }} {{ client.email }} {{ client.name or 'N/A' }} {{ client.company or 'N/A' }} {{ client.country or 'N/A' }} {{ (client.api_token[:16] + '...') if client.api_token else 'N/A' }} {% if client.is_active %} Active {% else %} Inactive {% endif %} {{ client.created_at.strftime('%Y-%m-%d') if client.created_at else 'N/A' }}
No clients found.
{% if clients.pages > 1 %} {% endif %}
{% endblock %}