{% extends 'layouts/base.html' %} {% load static %} {% block title %}Saved Reports - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Saved Reports

View and manage your saved reports

Create New Report
{% if reports %}
{% for report in reports %}

{{ report.name }}

{% if report.description %}

{{ report.description }}

{% endif %}
{{ report.get_data_source_display }} Created {{ report.created_at|date:"M d, Y" }} {% if report.last_run_at %} Last run {{ report.last_run_at|date:"M d, Y H:i" }} {% endif %} {% if report.is_shared %} Shared {% endif %}
{% if report.created_by == request.user %} {% endif %}
{% endfor %}
{% if page_obj.has_other_pages %}

Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} reports

{% endif %} {% else %}

No saved reports found

Create your first report using the Report Builder

Create Report
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}