{% extends "base.html" %} {% block title %}Ticket Reports — {{ project.name }} — Fossilrepo{% endblock %} {% block content %}

{{ project.name }}

{% include "fossil/_project_nav.html" %}

Ticket Reports

{% if can_admin %} Create Report {% endif %}
{% if reports %}
{% for report in reports %}
{{ report.title }} {% if not report.is_public %} Private {% endif %}
{% if report.description %}

{{ report.description }}

{% endif %}
Run {% if can_admin %} Edit {% endif %}
{% endfor %}
{% else %}

{% if search %}No reports matching "{{ search }}".{% else %}No ticket reports defined.{% endif %}

{% if not search %}

Reports let you run custom SQL queries against the Fossil ticket database.

{% if can_admin %} Create the first report {% endif %} {% endif %}
{% endif %} {% include "includes/_pagination.html" %}
{% endblock %}