diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js
index 8db27641..50b184b1 100644
--- a/src/webui/static/app/epg.js
+++ b/src/webui/static/app/epg.js
@@ -100,13 +100,15 @@ tvheadend.epgDetails = function(event) {
if (event.episodeOnscreen)
content += '
' + event.episodeOnscreen + '
';
if (event.start)
- content += '';
+ content += '';
if (event.stop)
- content += '';
+ content += '';
if (event.summary)
content += '' + event.summary + '
';
if (event.description)
content += '' + event.description + '
';
+ if (event.starRating || event.ageRating || event.genre)
+ content += '
';
if (event.starRating)
content += '';
if (event.ageRating)
@@ -455,7 +457,7 @@ tvheadend.epg = function() {
{
width: 100,
id: 'start',
- header: "Start",
+ header: "Start Time",
dataIndex: 'start',
renderer: renderDate
},
@@ -463,7 +465,7 @@ tvheadend.epg = function() {
width: 100,
hidden: true,
id: 'stop',
- header: "End",
+ header: "End Time",
dataIndex: 'stop',
renderer: renderDate
},
diff --git a/src/webui/static/app/ext.css b/src/webui/static/app/ext.css
index e37df835..3b7eaf1f 100644
--- a/src/webui/static/app/ext.css
+++ b/src/webui/static/app/ext.css
@@ -523,6 +523,7 @@
}
.x-epg-time {
+ font-style: italic;
margin: 5px;
}