summaryrefslogtreecommitdiffstats
path: root/gui/views/services.tpl
blob: 7ca2f9f44731d4f9fef5fe6642b8042bdf6337c4 (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
28
29
30
31
<!DOCTYPE html>
<html><head>
<title>ODR-DabMux Services</title>
<style>
body {
    font-family: sans;
}
</style>
</head>
<body>
    <h1>Services for {{version}}</h1>
    <table>
    <tr>
        <th>name</th>
        <th>id</th>
        <th>label</th>
        <th>pty</th>
        <th>language</th>
    </tr>
        % for s in services:
            <tr><td>{{s.name}}</td>
                <td>{{s.id}}</td>
                <td>{{s.label}} ({{s.shortlabel}})</td>
                <td>{{s.pty}}</td>
                <td>{{s.language}}</td>
            </tr>
        % end
    </ul>
</body>
</html>