{# Copyright (C) 2023 Dirk Stöcker
This software is licensed as described in the file COPYING, which
you should have received as part of this distribution. The terms
are also available at https://trac.edgewall.org/wiki/TracLicense.
This software consists of voluntary contributions made by many
individuals. For the exact contribution history, see the revision
history and logs, available at https://trac.edgewall.org/.
#}
# extends 'layout.html'
# block title
# if author:
${_("Ticket Stats (%(author)s)" % {'author' : author})}
# else:
${_("Ticket Stats")}
# endif
# endblock title
# block content
${_("Statistics - Tickets")}
# if author:
${_("Author")} | ${author} |
# endif
${_("First ticket")} | ${mintime} |
${_("Last ticket")} | ${maxtime} |
${_("Ticket age")} | ${age} |
${_("Reporters")} | ${reporters} |
${_("Tickets")} | ${total} |
${_("Tickets-per-year")} | ${peryear} |
${_("Tickets-per-month")} | ${permonth} |
${_("Tickets-per-day")} | ${perday} |
${_("Tickets-per-hour")} | ${perhour} |
# if history:
${_("Open Tickets")}
# endif
${_("Tickets by author")}
${_("Author")} |
${_("Reports")} |
${_("Changes")} |
# for stat in byauthor:
${stat.name} |
${stat.reports} |
${stat.changes} |
# endfor
${_("Tickets by component")}
${_("Component")} |
${_("Open")} |
${_("Total")} |
# for stat in bycomponent:
${stat.name} |
${stat.open} |
${stat.total} |
# endfor
${_("Tickets by milestone")}
${_("Milestone")} |
${_("Open")} |
${_("Total")} |
# for stat in bymilestone:
${stat.name} |
${stat.open} |
${stat.total} |
# endfor
${_("Most active tickets")}
${_("Oldest open tickets")}
${_("Latest tickets reported")}
${_("Latest tickets changed")}
#endblock content