diff options
author | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-03 20:17:26 +0000 |
---|---|---|
committer | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-03 20:17:26 +0000 |
commit | 231341f7bbe2bb6343ec6694b894803b100937c5 (patch) | |
tree | 734eb361e9666ea4c4805ba7cdcca19b0fbcbb74 /pages | |
parent | 08d5a16b15f4874d37f6f92961cc05fcbe877a09 (diff) | |
download | vdr-plugin-live-231341f7bbe2bb6343ec6694b894803b100937c5.tar.gz vdr-plugin-live-231341f7bbe2bb6343ec6694b894803b100937c5.tar.bz2 |
Verbesserungen
Diffstat (limited to 'pages')
-rw-r--r-- | pages/whats_on_now.ecpp | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/pages/whats_on_now.ecpp b/pages/whats_on_now.ecpp index 3511105..eb323d9 100644 --- a/pages/whats_on_now.ecpp +++ b/pages/whats_on_now.ecpp @@ -43,17 +43,19 @@ const cSchedules* Schedules = cSchedules::Schedules(schedulesLock); std::string short_description(Event->ShortText() ? Event->ShortText() : ""); std::string description(Event->Description() ? Event->Description() : ""); }> - <div class="event"> - <div class="station"><$ Channel->Name() $></div> - <div class="tools"> + <table class="event" cellpadding="0" cellspacing="0"> + <tr><td class="station" colspan="2"><$ Channel->Name() $></td></tr> + <tr> + <td class="tools"> - </div> - <div class="content"> - <span class="title"><$ title $></span><br/> - <span class="short"><$ short_description $></span> - <div class="description"><$ description $></div> - </div> - </div> + </td> + <td class="content"> + <div class="title"><$ title $></div> + <div class="short"><$ short_description $></div> + <div class="description"><$ description $></div> + </td> + </tr> + </table> <{ } } |