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