aboutsummaryrefslogtreecommitdiffstats
path: root/gui/views/services.tpl
blob: 42438a8414b6771a9bde7a336f5e47387b726b41 (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>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> 
  </head>
  <body class="w3-container">
    <h1>Services for {{version}}</h1>
    <table class="w3-table w3-striped w3-bordered">
      <tr class="w3-blue-grey">
        <th>Service</th>
        <th>Id</th>
        <th>Label</th>
        <th>Short label</th>
        <th>Program type</th>
        <th>Language</th>
      </tr>
      {% for s in services %}
        <tr>
          <td>{{s.name}}</td>
          <td>{{s.id}}</td>
          <td>{{s.label}}</td>
          <td>{{s.shortlabel}}</td>
          <td>{{s.pty}}</td>
          <td>{{s.language}}</td>
        </tr>
      {% endfor %}
    </table>
  </body>
</html>