{% extends "base.html" %} {% block content %}
| Username | Name | Company | Country | Status | Created | Actions | |
|---|---|---|---|---|---|---|---|
| {{ client.username }} | {{ client.email }} | {{ client.name or '-' }} | {{ client.company or '-' }} | {{ client.country or '-' }} | {% if client.is_active %} Active {% else %} Inactive {% endif %} | {{ client.created_at.strftime('%Y-%m-%d') if client.created_at else '-' }} | View |
| No clients found. | |||||||