diff --git a/pandora/config.indiancinema.jsonc b/pandora/config.indiancinema.jsonc index c03a3ff7..cc70658b 100644 --- a/pandora/config.indiancinema.jsonc +++ b/pandora/config.indiancinema.jsonc @@ -1052,6 +1052,24 @@ "find": true, "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", "title": "Song Titles", diff --git a/static/js/infoView.indiancinema.js b/static/js/infoView.indiancinema.js index ce4c6b5e..28a17d07 100644 --- a/static/js/infoView.indiancinema.js +++ b/static/js/infoView.indiancinema.js @@ -320,6 +320,15 @@ pandora.ui.infoView = function(data) { renderGroup(canSeeAllMetadata ? ['genre', 'topic'] : ['genre']); + renderGroup([ + 'censorshipcertificatenumber', + 'dateofcensorcertificate', + 'ratingcertificate', + 'length', + 'numberofreels', + 'format' + ]); + renderGroup(['imdbId', 'links']); if (canEdit) { @@ -364,14 +373,6 @@ pandora.ui.infoView = function(data) { } // Extra Metadata - renderGroup([ - 'censorshipcertificatenumber', - 'dateofcensorcertificate', - 'ratingcertificate', - 'length', - 'numberofreels', - 'format' - ]); renderGroup([ 'presentedby', 'coproducer', @@ -412,9 +413,15 @@ pandora.ui.infoView = function(data) { 'productioncontroller', 'stuntdirector', 'continuity', - 'publicity', + 'publicity' + ]); + renderGroup([ 'courtesy', ]); + renderGroup([ + 'subtitledby', + 'annotatedby', + ]); // Songs if (data.songs || canEdit) {