{% extends "base.html" %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% if clients.items %} {% for client in clients.items %} {% endfor %} {% else %} {% endif %}
Username Email 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.
{% if clients.has_prev or clients.has_next %} {% endif %}
{% endblock %}