diff options
Diffstat (limited to 'pages/whats_on_now.ecpp')
-rw-r--r-- | pages/whats_on_now.ecpp | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/pages/whats_on_now.ecpp b/pages/whats_on_now.ecpp index eb323d9..4a2a5bc 100644 --- a/pages/whats_on_now.ecpp +++ b/pages/whats_on_now.ecpp @@ -29,7 +29,7 @@ const cSchedules* Schedules = cSchedules::Schedules(schedulesLock); </div> <div class="inhalt"> <div class="head_box"> - <$ tr("What's running at") $> <$ FormatDateTime(tr("%I.%M %p"), time(0)) $> + <$ tr("What's running at") $> <$ FormatDateTime(tr("%I:%M %p"), time(0)) $> </div> <{ @@ -43,19 +43,7 @@ const cSchedules* Schedules = cSchedules::Schedules(schedulesLock); std::string short_description(Event->ShortText() ? Event->ShortText() : ""); std::string description(Event->Description() ? Event->Description() : ""); }> - <table class="event" cellpadding="0" cellspacing="0"> - <tr><td class="station" colspan="2"><$ Channel->Name() $></td></tr> - <tr> - <td class="tools"> - - </td> - <td class="content"> - <div class="title"><$ title $></div> - <div class="short"><$ short_description $></div> - <div class="description"><$ description $></div> - </td> - </tr> - </table> +<& event_widget title=(title) short_description=(short_description) description=(description) channel_name=(Channel->Name())> <{ } } |