diff options
Diffstat (limited to '')
-rw-r--r-- | template/overview.phtml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/template/overview.phtml b/template/overview.phtml index 5683cd0..e9cee8e 100644 --- a/template/overview.phtml +++ b/template/overview.phtml @@ -62,18 +62,22 @@ width="213" height="120" /> + <? else: ?> + + <h2><?=h($room->getDisplay())?></h2> + <? endif ?> <? if($room->hasSchedule()): ?> <? $upcoming = @$upcomingTalksPerRoom[ $room->getScheduleName() ] ?: [] ?> <div class="program-schedule"> <div class="talk current-talk" title="<?=h(@$upcoming['current']['title'] ?: 'none') ?>"> - <strong>Now:</strong> + <strong>Now (since <?=date('G:i', @$upcoming['current']['start']) ?>):</strong><br/> <span class="t"><?=h(@$upcoming['current']['title'] ?: 'none') ?></span> </div> <div class="talk next-talk" title="<?=h(@$upcoming['next']['title'] ?: 'none') ?>"> - <strong>Next Talk:</strong> + <strong>Next Talk (<?=date('G:i', @$upcoming['next']['start']) ?>):</strong><br/> <span class="t"><?=h(@$upcoming['next']['title'] ?: 'none') ?></span> </div> </div> |