{# 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:
${_("Wiki Stats (%(author)s)" % {'author' : author})}
# else:
${_("Wiki Stats")}
# endif
# endblock title
# block content
${_("Statistics - Wiki")}
# if author:
${_("Author")} | ${author} |
# endif
${_("First edit")} | ${mintime} |
${_("Last edit")} | ${maxtime} |
${_("Wiki age")} | ${age} |
${_("Editors")} | ${editors} |
${_("Edits")} | ${edits} |
${_("Edits-per-year")} | ${peryear} |
${_("Edits-per-month")} | ${permonth} |
${_("Edits-per-day")} | ${perday} |
${_("Edits-per-hour")} | ${perhour} |
# if history:
${_("Total Pages")}
# endif
${_("Edits by author")}
${_("Author")} |
${_("Edits")} |
${_("Pages")} |
${_("Percent")} |
# for stat in byauthor:
${stat.name} |
${stat.count} |
${stat.pages} |
${stat.percent}% |
# endfor
${_("Latest wiki pages changed")}
${_("Most active wiki pages")}
# for stat in pages:
${stat.name} |
${stat.count} |
${stat.percent}% |
# endfor
${_("Largest wiki pages")}
#endblock content