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

{% trans "Saved Reports" %}

{% trans "View and manage your saved reports" %}

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

{{ report.name }}

{% if report.description %}

{{ report.description }}

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

{% blocktrans with start=page_obj.start_index end=page_obj.end_index total=page_obj.paginator.count %}Showing {{ start }} to {{ end }} of {{ total }} reports{% endblocktrans %}

{% endif %} {% else %}

{% trans "No saved reports found" %}

{% trans "Create your first report using the Report Builder" %}

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