diff options
author | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-03 22:46:53 +0000 |
---|---|---|
committer | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-03 22:46:53 +0000 |
commit | 6fad5b3874f101e565f6e8feeaaf0f0dee3d45b3 (patch) | |
tree | f65e23acfa289ab7169108a07cf3247689ed8471 /pages | |
parent | 88be8d5e112306f9a34f5333f9c8e2f0da085b1d (diff) | |
download | vdr-plugin-live-6fad5b3874f101e565f6e8feeaaf0f0dee3d45b3.tar.gz vdr-plugin-live-6fad5b3874f101e565f6e8feeaaf0f0dee3d45b3.tar.bz2 |
Added active-flag to list
Diffstat (limited to 'pages')
-rw-r--r-- | pages/timers.ecpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pages/timers.ecpp b/pages/timers.ecpp index cf6479d..65ccf6b 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -33,7 +33,9 @@ using namespace vdrlive; % } else { <table class="timers" cellspacing="0" cellpadding="0"> <tr> + <td class="head"><$ tr("Active") $></td> <td class="head"><$ tr("Channel") $></td> + <td class="head"><$ tr("Date") $></td> <td class="head"><$ tr("Start") $></td> <td class="head"><$ tr("Stop") $></td> <td class="head"><$ tr("File") $></td> @@ -45,7 +47,9 @@ using namespace vdrlive; }> <tr class="<$ active ? "active" : "" $>"> + <td><$ (timer->Flags() & 1) ? "Ja" : "Nein" $></td> <td><$ timer->Channel()->Name() $></td> + <td><$ FormatDateTime(tr("%a, %b %d"), timer->Day()) $></td> <td><$ FormatDateTime(tr("%I:%M %p"), timer->Start()) $></td> <td><$ FormatDateTime(tr("%I:%M %p"), timer->Stop()) $></td> <td><$ timer->File() $></td> |