diff --git a/pages/earwigbot.mako b/pages/earwigbot.mako index 239b851..1dfd5c7 100644 --- a/pages/earwigbot.mako +++ b/pages/earwigbot.mako @@ -43,13 +43,13 @@ %>\ <%def name="get_status()" filter="trim"> <% status, since, uptime, host = collect_status_info() %> - ${status} + ${"has been" if status == "online" else "is"} ${status} % if status == "online": since ${since} (${uptime} uptime) on ${host} % endif \ <%include file="/support/header.mako" args="environ=environ, title='EarwigBot Status'"/>

EarwigBot Status

-

EarwigBot is ${get_status()}.

+

EarwigBot ${get_status()}.

Additional information: status.toolserver.org

<%include file="/support/footer.mako" args="environ=environ"/>