blob: 7af383f78b945eea1475c99423f22f132a87192c (
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>ODR-DabMux Services</title>
<link rel="stylesheet" href="static/style.css" />
</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>
|