{# 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 Monitoring")} # endblock admintitle # block adminpanel

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

${jmacros.form_token_input()}
${_("Log Entry:")}

${_("Information")}

${_("Time:")} ${pretty_dateinfo(fromtimestamp(entry.time))}
${_("Path:")} ${abs_href(entry.path)}
${_("Author:")} ${entry.author}
${_("Authenticated:")} ${entry.authenticated and _('yes') or _('no')}
${_("IP address:")} ${entry.ipnr}
${_("Karma:")} ${entry.karma} # if entry.rejected: ${_("(marked as spam)")} # else: ${_("(marked as ham)")} #endif # if entry.getreasons():
    # for reason in entry.getreasons():
  • ${reason}
  • # endfor
# endif
# if entry.content

${_("Submitted content")}

${entry.content}
# endif

${_("HTTP headers")}

${entry.headers}
# if train_only: # endif
# if entry.authenticated and accmgr:
${jmacros.form_token_input()}
# endif
${jmacros.form_token_input()}
# endblock adminpanel