diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-04 15:55:10 +0000 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2007-05-04 15:55:10 +0000 |
commit | 25afcf3a861c420b5caa513939e664144739279f (patch) | |
tree | 1a96ad34a22ea543684fb9ba00421c2b6c238675 /pages/schedule.ecpp | |
parent | f70ef147a33991271f419c5db4aa83b0fb63cce6 (diff) | |
download | vdr-plugin-live-25afcf3a861c420b5caa513939e664144739279f.tar.gz vdr-plugin-live-25afcf3a861c420b5caa513939e664144739279f.tar.bz2 |
- the current event in schedules is now displayed in red
Diffstat (limited to 'pages/schedule.ecpp')
-rw-r--r-- | pages/schedule.ecpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/pages/schedule.ecpp b/pages/schedule.ecpp index 93143e5..d7b34dd 100644 --- a/pages/schedule.ecpp +++ b/pages/schedule.ecpp @@ -78,7 +78,6 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); string end(Event->EndTime() ? FormatDateTime(tr("%I:%M %p"), Event->EndTime()) : ""); string day(Event->StartTime() ? FormatDateTime(tr("%A, %b %d %Y"), Event->StartTime()) : ""); tEventID event = Event->EventID(); - if (current_day != day) { if (current_day != "") { }> @@ -96,7 +95,15 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); <tr class="<? active_line ? "active" ?>"> <td style="border-left: 1px solid black"><& pageelems.event_timer channelid=(channel_id) eventid=(event) &></td> <td><$ start $> - <$ end $></td> - <td><strong><$ title $></strong><br /><$ short_description $><br /></td> + <td> +% if(Event == PresentEvent) { + <a name="cur" id="cur"></a><font color="#FF0000"> +% } + <strong><$ title $></strong><br /><$ short_description $><br /> +% if(Event == PresentEvent) { + </font> +% } + </td> <td style="border-right: 1px solid black"> </td> </tr> % } |