moved from screen to tmux
[tvweb.git] / templates / channeltable.html
blob7d30c7147d108ced3a0b4786911c5837e2f8ec08
1 <html xmlns="http://www.w3.org/1999/xhtml"
2 xmlns:py="http://genshi.edgewall.org/" py:strip="">
3 <table border="0">
4 <tr>
5 <th>Channel:</th>
6 <td>
7 <form action="changechannel" method="post">
8 <table border="0">
9 <tr><td>
10 <select name="channel">
11 <option py:for="c in channels" value="$c">$c</option>
12 </select>
13 </td></tr>
14 <tr><td><input type="submit" value="Play" /></td></tr>
15 </table>
16 </form>
17 </td>
18 </tr>
19 <tr>
20 <th>&nbsp;</th>
21 <td>
22 <form action="stopplaying" method="post">
23 <table><tr><td><input type="submit" value="Stop" /></td></tr></table>
24 </form>
25 </td>
26 </tr>
27 <tr>
28 <th>Volume:</th>
29 <td>
30 <table><tr>
31 <td>
32 <form action="voldown" method="post">
33 <input type="submit" value="-" />
34 </form>
35 </td><td>
36 <form action="volup" method="post">
37 <input type="submit" value="+" />
38 </form>
39 </td><td>
40 ${curvolume}
41 </td>
42 </tr></table>
43 </td>
44 </tr>
45 <tr>
46 <th colspan="2">&nbsp;</th>
47 </tr>
48 <tr>
49 <th>&nbsp;</th>
50 <td><a href="http://kultura.idnes.cz/tv-program.asp" target="_">TV Program</a></td>
51 </tr>
52 <tr>
53 <th colspan="2">&nbsp;</th>
54 </tr>
55 </table>
56 </html>