diff options
Diffstat (limited to 'gui/views/services.tpl')
-rw-r--r-- | gui/views/services.tpl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gui/views/services.tpl b/gui/views/services.tpl new file mode 100644 index 0000000..7ca2f9f --- /dev/null +++ b/gui/views/services.tpl @@ -0,0 +1,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> + |