A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
759 B

  1. <%include file="/support/header.mako" args="environ=environ, cookies=cookies, title='EarwigBot Status'"/>\
  2. <%namespace module="toolserver.eb_inter" import="collect_status_info"/>\
  3. <%def name="get_status()" filter="trim">
  4. <% status, since, uptime, host = collect_status_info() %>
  5. ${"has been" if status == "online" else "is"} <span class="${status}">${status}</span>
  6. % if status == "online":
  7. since ${since} (${uptime} uptime) on <tt>${host}</tt>
  8. % endif
  9. </%def>\
  10. <h1>EarwigBot Status</h1>
  11. <p>EarwigBot ${get_status()}.</p>
  12. <p>Additional information: <a href="http://status.toolserver.org/">status.toolserver.org</a></p>
  13. <%include file="/support/footer.mako" args="environ=environ, cookies=cookies"/>