{% extends "admin/layout.html" %} {% block title %}Clients{% endblock %} {% block page_title %}Client Management{% endblock %} {% block topbar_actions %} {% endblock %} {% block content %}
All Clients ({{ clients|length }})
{% for c in clients %} {% else %} {% endfor %}
Name Username SSRS Folder Reports Status Last Login Actions
{{ c.full_name }} {{ c.username }} {% if c.ssrs_folder %} πŸ“ {{ c.ssrs_folder }} {% else %}β€”{% endif %} {{ c.report_count }} reports {{ 'Active' if c.is_active else 'Inactive' }} {{ c.last_login.strftime('%d %b %Y %H:%M') if c.last_login else 'Never' }}
πŸ“„
πŸ‘₯

No clients yet

Click "Add Client" to create the first one.

{% endblock %} {% block modals %} {% endblock %} {% block scripts %} {% endblock %}