<%! from os import path tools = [ ("Home", "home", "index", True, None), ("Copyvio Detector", "copyvios", "copyvios", True, "Blah"), ("EarwigBot Status", "earwigbot", "earwigbot", True, "Blah"), ("Contribution Surveyor", "surveyor", "surveyor", False, "Blah"), ("SWMT Helper", "swmt", "swmt", False, "Blah"), ] %>\ <% root = path.dirname(environ["SCRIPT_NAME"]) pretty = path.split(root)[0] %>\ <%def name="get_tools()"><% return tools %>\ <%include file="/support/header.mako" args="environ=environ, title='Home', slug='home'"/>

My Tools

% for name, tool, link, complete, desc in tools: % if desc:

${tool}: ${name}

${desc}

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