more keys

This commit is contained in:
j 2017-01-25 14:33:20 +00:00
parent bf8c99513b
commit ff19404e6d
2 changed files with 34 additions and 9 deletions

View File

@ -1052,6 +1052,24 @@
"find": true, "find": true,
"sortType": "person" "sortType": "person"
}, },
{
"id": "subtitledby",
"title": "Subtitled by",
"type": ["string"],
"advanced": true,
"columnWidth": 180,
"find": true,
"sortType": "person"
},
{
"id": "annotatedby",
"title": "Annotated by",
"type": ["string"],
"advanced": true,
"columnWidth": 180,
"find": true,
"sortType": "person"
},
{ {
"id": "songs", "id": "songs",
"title": "Song Titles", "title": "Song Titles",

View File

@ -320,6 +320,15 @@ pandora.ui.infoView = function(data) {
renderGroup(canSeeAllMetadata ? ['genre', 'topic'] : ['genre']); renderGroup(canSeeAllMetadata ? ['genre', 'topic'] : ['genre']);
renderGroup([
'censorshipcertificatenumber',
'dateofcensorcertificate',
'ratingcertificate',
'length',
'numberofreels',
'format'
]);
renderGroup(['imdbId', 'links']); renderGroup(['imdbId', 'links']);
if (canEdit) { if (canEdit) {
@ -364,14 +373,6 @@ pandora.ui.infoView = function(data) {
} }
// Extra Metadata // Extra Metadata
renderGroup([
'censorshipcertificatenumber',
'dateofcensorcertificate',
'ratingcertificate',
'length',
'numberofreels',
'format'
]);
renderGroup([ renderGroup([
'presentedby', 'presentedby',
'coproducer', 'coproducer',
@ -412,9 +413,15 @@ pandora.ui.infoView = function(data) {
'productioncontroller', 'productioncontroller',
'stuntdirector', 'stuntdirector',
'continuity', 'continuity',
'publicity', 'publicity'
]);
renderGroup([
'courtesy', 'courtesy',
]); ]);
renderGroup([
'subtitledby',
'annotatedby',
]);
// Songs // Songs
if (data.songs || canEdit) { if (data.songs || canEdit) {