Home | History | Annotate | Download | only in templates
      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 
     10 <div class=login>
     11     {% if user_email %}
     12     <span>{{ user_email }}</span>
     13     {% endif %}
     14     <span><a href="{{ login_url }}">{{ login_text }}</a></span>
     15 </div>
     16 
     17 <h2>Dashboards</h2>
     18 <div>
     19     <ul>{% for title,link in dashboards %}
     20         <li>
     21             <a href="{{ link }}" >{{ title }}</a>
     22         </li>{% endfor %}
     23     </ul>
     24 </div>
     25 
     26 <h2>JSON files</h2>
     27 <div>
     28     <ul>{% for title,link in menu %}
     29         <li>
     30             <a href="{{ link }}" >{{ title }}</a>
     31         </li>{% endfor %}
     32     </ul>
     33 </div>
     34 </body>
     35 </html>
     36