aboutsummaryrefslogtreecommitdiffstats
path: root/gui/views/index.tpl
blob: a73d6d207ba40abf68d753879f0f07276ac66c41 (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
32
<!DOCTYPE html>
<html><head>
<title>ODR-DabMux Configuration Dump</title>
<style>
body {
    font-family: sans;
}
</style>
</head>
<body>
    <h1>Configuration for {{version}}</h1>
    <h2>Services</h2>
    <ul>
        % for s in services:
            <li>{{s.name}}: <i>{{s.label}} ({{s.shortlabel}})</i> &mdash; id = {{s.id}}</li>
        % end
    </ul>
    <h2>Subchannels</h2>
    <ul>
        % for s in subchannels:
            <li>{{s.name}}: <i>{{s.type}}</i> &mdash; {{s.inputfile}}; {{s.bitrate}}kbps</li>
        % end
    </ul>
    <h2>Components</h2>
    <ul>
        % for s in components:
            <li>{{s.name}}: <i>{{s.label}} ({{s.shortlabel}})</i> &mdash; service {{s.service}}; subchannel {{s.subchannel}}; figtype {{s.figtype}}</li>
        % end
    </ul>
</body>
</html>