diff options
author | Andreas Hubel | 2017-08-06 13:06:36 +0200 |
---|---|---|
committer | Andreas Hubel | 2017-08-06 13:06:36 +0200 |
commit | c89671d5fb09a7f5e38a8dce08db2f5777bdaeef (patch) | |
tree | e5777c91e54c49b7dc2843c4af219de6e17da05c /template/overview.phtml | |
parent | ed7e7c193fe5660685d929e517b9dd30b1bb9fa7 (diff) |
show times for current and next talk in overview
Diffstat (limited to 'template/overview.phtml')
-rw-r--r-- | template/overview.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/overview.phtml b/template/overview.phtml index 8e210eb..e9cee8e 100644 --- a/template/overview.phtml +++ b/template/overview.phtml @@ -72,12 +72,12 @@ <? $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> |