Recently added TV Shows display title of the show
This commit is contained in:
@@ -42,7 +42,9 @@ DOCUMENTATION :: END
|
|||||||
% endif
|
% endif
|
||||||
</div>
|
</div>
|
||||||
<div class="dashboard-recent-media-metacontainer">
|
<div class="dashboard-recent-media-metacontainer">
|
||||||
% if item['type'] == 'season' or item['type'] == 'album':
|
% if item['type'] == 'season':
|
||||||
|
<h3>${item['parent_title']} - ${item['title']}</h3>
|
||||||
|
% elif item['type'] == 'album':
|
||||||
<h3>${item['title']}</h3>
|
<h3>${item['title']}</h3>
|
||||||
% elif item['type'] == 'movie':
|
% elif item['type'] == 'movie':
|
||||||
<h3>${item['title']} (${item['year']})</h3>
|
<h3>${item['title']} (${item['year']})</h3>
|
||||||
|
|||||||
@@ -218,6 +218,7 @@ class PmsConnect(object):
|
|||||||
recent_items = {'type': recent_type,
|
recent_items = {'type': recent_type,
|
||||||
'rating_key': helpers.get_xml_attr(item, 'ratingKey'),
|
'rating_key': helpers.get_xml_attr(item, 'ratingKey'),
|
||||||
'title': helpers.get_xml_attr(item, 'title'),
|
'title': helpers.get_xml_attr(item, 'title'),
|
||||||
|
'parent_title': helpers.get_xml_attr(item, 'parentTitle'),
|
||||||
'thumb': helpers.get_xml_attr(item, 'thumb'),
|
'thumb': helpers.get_xml_attr(item, 'thumb'),
|
||||||
'added_at': helpers.get_xml_attr(item, 'addedAt')
|
'added_at': helpers.get_xml_attr(item, 'addedAt')
|
||||||
}
|
}
|
||||||
@@ -232,6 +233,7 @@ class PmsConnect(object):
|
|||||||
recent_items = {'type': recent_type,
|
recent_items = {'type': recent_type,
|
||||||
'rating_key': helpers.get_xml_attr(item, 'ratingKey'),
|
'rating_key': helpers.get_xml_attr(item, 'ratingKey'),
|
||||||
'title': helpers.get_xml_attr(item, 'title'),
|
'title': helpers.get_xml_attr(item, 'title'),
|
||||||
|
'parent_title': helpers.get_xml_attr(item, 'parentTitle'),
|
||||||
'year': helpers.get_xml_attr(item, 'year'),
|
'year': helpers.get_xml_attr(item, 'year'),
|
||||||
'thumb': helpers.get_xml_attr(item, 'thumb'),
|
'thumb': helpers.get_xml_attr(item, 'thumb'),
|
||||||
'added_at': helpers.get_xml_attr(item, 'addedAt')
|
'added_at': helpers.get_xml_attr(item, 'addedAt')
|
||||||
|
|||||||
Reference in New Issue
Block a user