{% extends "admin/layout.html" %} {% block title %}{{ client.full_name }} — Access{% endblock %} {% block page_title %}{{ client.full_name }} — Report Access{% endblock %} {% block topbar_actions %} ⚡ Manage Access ← All Clients {% endblock %} {% block content %}
{{ client.full_name }}
{% if client.ssrs_folder %}· 📁 {{ client.ssrs_folder }}{% endif %}
{{ 'Active' if client.is_active else 'Inactive' }}
Granted Reports {{ access_list | selectattr('is_active') | list | length }} active
{% for a in access_list %} {% else %} {% endfor %}
Report NamePathCategory StatusGranted AtAction
{{ a.report_name }} {{ a.report_path }} {{ a.category }} {{ 'Active' if a.is_active else 'Revoked' }} {{ a.granted_at.strftime('%d %b %Y') if a.granted_at else '—' }} {% if a.is_active %}
{% else %} {% endif %}
📄

No reports assigned yet

Click ⚡ Manage Access to grant reports from this client's SSRS folder.

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