{% for dashboard in dashboards %}
{% empty %}
No Dashboards Found
Create your first dashboard to get started with analytics.
Create Dashboard
{% endfor %}
| Dashboard |
Type |
Widgets |
Status |
Created By |
Last Updated |
Actions |
{% for dashboard in dashboards %}
|
{{ dashboard.name }}
{{ dashboard.description|default:"No description"|truncatechars:50 }}
|
{{ dashboard.get_dashboard_type_display }}
|
{{ dashboard.widgets.count }}
|
{% if dashboard.is_active %}
Active
{% else %}
Inactive
{% endif %}
{% if dashboard.is_shared %}
Shared
{% endif %}
|
{{ dashboard.created_by.get_full_name|default:dashboard.created_by.username }} |
{{ dashboard.updated_at|date:"M d, Y H:i" }} |
|
{% empty %}
No dashboards found matching your criteria.
|
{% endfor %}
{% if is_paginated %}
{% endif %}