WebKitTools/TestResultServer/templates/menu.html
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 17 Sep 2010 09:02:29 +0300
changeset 0 4f2f89ce4247
permissions -rw-r--r--
Revision: 201037

<!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>