{% extends "admin/layout.html" %} {% block title %}Clients{% endblock %} {% block page_title %}Client Management{% endblock %} {% block topbar_actions %} {% endblock %} {% block content %}
| 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 yetClick "Add Client" to create the first one. |
|||||||