{% extends "hangarready/base.html" %} {% load static %} {% block page_subtitle %} - Saved Reports {% endblock %} {% block hangar_content %}
Back to Dashboard

Saved Reports

{% if saved_searches %}
{% for item in saved_searches %} {% endfor %}
Report Name Details Characters Created Actions
{{ item.search.name }} {% if item.search.ship_group_ids %} {{ item.search.ship_group_ids|length }} class{{ item.search.ship_group_ids|length|pluralize:"es" }} {% endif %} {% if item.search.ship_type_ids %} {{ item.search.ship_type_ids|length }} ship{{ item.search.ship_type_ids|length|pluralize }} {% endif %} {% if item.search.location_id %} Specific Location {% endif %} {{ item.character_count }} character{{ item.character_count|pluralize }} {{ item.search.created_at|date:"Y-m-d" }}
Run Report
{% csrf_token %}
{% else %}
You don't have any saved reports yet.

To save a report, go to the Ship Report Generator, create a report, and click the "Save Report" button.

{% endif %}
{% endblock %}