Home | History | Annotate | Download | only in templates
      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>Test Result Server</title>
      5 <table class=login>
      6     <tr>
      7         <td>
      8             {% if user_email %}
      9             <span>{{ user_email }}</span>
     10             {% endif %}
     11             <span><a href="{{ login_url }}">{{ login_text }}</a></span>
     12         </td>
     13     </tr>
     14 </table>
     15 <link type="text/css" rel="stylesheet" href="/stylesheets/menu.css" />
     16 </head>
     17 <body>
     18 <h1>Test Result Server</h1>
     19 <div>
     20     <ul>{% for title,link in menu %}
     21         <li>
     22             <a href="{{ link }}" >{{ title }}</a>
     23         </li>{% endfor %}
     24     </ul>
     25 </div>
     26 </body>
     27 </html>
     28