menu.html 704 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Test Result Server</title>
  5. <link type="text/css" rel="stylesheet" href="/stylesheets/menu.css" />
  6. </head>
  7. <body>
  8. <h1>Test Result Server</h1>
  9. <div class=login>
  10. {% if user_email %}
  11. <span>{{ user_email }}</span>
  12. {% endif %}
  13. <span><a href="{{ login_url }}">{{ login_text }}</a></span>
  14. </div>
  15. <h2>Dashboards</h2>
  16. <div>
  17. <ul>{% for title,link in dashboards %}
  18. <li>
  19. <a href="{{ link }}" >{{ title }}</a>
  20. </li>{% endfor %}
  21. </ul>
  22. </div>
  23. <h2>JSON files</h2>
  24. <div>
  25. <ul>{% for title,link in menu %}
  26. <li>
  27. <a href="{{ link }}" >{{ title }}</a>
  28. </li>{% endfor %}
  29. </ul>
  30. </div>
  31. </body>
  32. </html>