{# 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 'admin.html' # block admintitle ${_("Spam Reports")} # endblock admintitle # block head ${ super() } # endblock head # block adminpanel

${_("Spam Filtering: Reports")}

${jmacros.form_token_input()} # if total:

${_("Viewing entries %(start)d - %(end)d of %(total)d.") % {'start': offset, 'end': offset + len(entries) - 1, 'total': total}}

# endif # set prevnext_nav # if 'prev' in chrome.links or 'next' in chrome.links # endif # endset # if entries: # endif # for cls,id,time,path,author,authenticated,comment in entries: # if comment: # endif # endfor # if not entries: # endif
  ${_("Path")} ${_("Author")} ${_("Date/time")}
${shorten_line(path, 55)} ${authenticated and _('yes') or _('no')} ${shorten_line(author, 55) or 'anonymous'} ${format_datetime(time)}
${comment}
${_("No data available")}
# if entries:
# endif
# endblock adminpanel