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.
 
 
 
 
 

28 lines
1.1 KiB

  1. <%!
  2. from os import path
  3. tools = [
  4. ("Home", "home", "index", True, None),
  5. ("Copyvio Detector", "copyvios", "copyvios", True, "Blah"),
  6. ("EarwigBot Status", "earwigbot", "earwigbot", True, "Blah"),
  7. ("Contribution Surveyor", "surveyor", "surveyor", False, "Blah"),
  8. ("SWMT Helper", "swmt", "swmt", False, "Blah"),
  9. ]
  10. %>\
  11. <%
  12. root = path.dirname(environ["SCRIPT_NAME"])
  13. pretty = path.split(root)[0]
  14. %>\
  15. <%def name="get_tools()"><% return tools %></%def>\
  16. <%include file="/support/header.mako" args="environ=environ, title='Home', slug='home'"/>
  17. <h1>My Tools</h1>
  18. % for name, tool, link, complete, desc in tools:
  19. % if desc:
  20. <div class="toolbox">
  21. <p class="toolname"><a class="dark" href="${pretty}/${link}"><span class="medium">${tool}:</span> ${name}</a></p>
  22. <p class="tooldesc">${desc}</p>
  23. </div>
  24. % endif
  25. % endfor
  26. <%include file="/support/footer.mako" args="environ=environ"/>