diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-03-14 12:14:10 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-03-14 12:14:10 +0100 |
commit | dddf3a10680874dc1950995b6c09446915df81ca (patch) | |
tree | 5c621b1a3e5660888faf01c929c4e3ad16fc780b /template/default/timer_list.html | |
parent | 2723bd07c1a821c2198f43a313570c600907c327 (diff) | |
download | vdradmin-am-3.4.4beta2.tar.gz vdradmin-am-3.4.4beta2.tar.bz2 |
2006-03-14: 3.4.4beta2v3.4.4beta2
- Reworked TV grabbing.
- Added optional parameters for TV for use with external tools: http://vdradmin-am.ip?aktion=tv_show&size=[full|half|quarter]&interval=[0|1|2|3|5|10|30|60]&tv_only=bla
- Fixed program switching in prog_summary, prog_list and prog_detail (Based on suggestions by kayser).
- New: buttons to move to previous/next day in timers_list (Requested by BigDiSt).
- Moved "help" menu into "about" menu.
- Added VDR's "commands.conf" conntent to select box in navigation menu.
- Changed defaults for "autotimer checking" in timers as they had been in v3.4.3.
- New button on remote controls: Mute (Requested by RĂ¼diger Jung and Hardy Flor).
- Timeline in timer_list will show timers of current day even if a timer starts the day before (Reported by Hardy Flor).
Diffstat (limited to 'template/default/timer_list.html')
-rw-r--r-- | template/default/timer_list.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/template/default/timer_list.html b/template/default/timer_list.html index 68bb232..dc1fc46 100644 --- a/template/default/timer_list.html +++ b/template/default/timer_list.html @@ -62,12 +62,14 @@ <tr class="heading"> <td class="col_left"></td> <td><h2><tmpl_var title></h2></td> - <td align="right"> + <td class="col_navi"> + <tmpl_if prevdayurl><a href="<tmpl_var prevdayurl>"><img src="bilder/pfeile_nachlinks.gif" border="0" /></a><tmpl_else><img src="bilder/pfeile_nachlinks_soft.gif" border="0" /></tmpl_if> <select name="vdr_id" class="submit" onchange="window.open('<tmpl_var url>?aktion=timer_list&sortby=<tmpl_var sortby>&desc=<tmpl_var cur_desc>&timer=' + this.options[this.selectedIndex].value,'main')"> <tmpl_loop day_loop> <option value="<tmpl_var sortfield>" <tmpl_if current>selected</tmpl_if>><tmpl_var day></option> </tmpl_loop> </select> + <tmpl_if nextdayurl><a href="<tmpl_var nextdayurl>"><img src="bilder/pfeile_nachrechts.gif" border="0" /></a><tmpl_else><img src="bilder/pfeile_nachrechts_soft.gif" border="0" /></tmpl_if> </td> <td class="col_right"></td> </tr> @@ -320,7 +322,7 @@ </tmpl_if> </tmpl_if> <tmpl_if expr="active == 1"><%! Yes !%></tmpl_if> - <tmpl_if expr="(active%32768) == 0"><%! No !%></tmpl_if> + <tmpl_if expr="active == 0"><%! No !%></tmpl_if> <tmpl_if expr="active == 5"><%! VPS !%></tmpl_if> <tmpl_if expr="autotimer">(<%! Auto !%>)</tmpl_if> </a> |