Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/8429139406ea436b27cf17bc8d236da3921e03a6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
8 changed files with
57 additions and
10 deletions
@ -1 +1,4 @@
< td colspan = "8" > No series found< / td >
< div class = "well span11" >
< i class = "icon-comment" / >
You must be new around here, You should add some series.
< / div >
@ -1,12 +1,19 @@
'use strict' ;
define ( [ 'app' , 'Quality/QualityProfileCollection' , 'Series/Index/SeriesItemView' , 'Config' ] , function ( app , qualityProfileCollection ) {
NzbDrone . Series . Index . EmptySeriesCollectionView = Backbone . Marionette . CompositeView . extend ( {
template : 'Series/Index/EmptySeriesIndexTemplate' ,
tagName : 'tr'
} ) ;
NzbDrone . Series . Index . SeriesIndexCollectionView = Backbone . Marionette . CompositeView . extend ( {
itemView : NzbDrone . Series . Index . SeriesItemView ,
itemViewContainer : '#x-series' ,
template : 'Series/Index/SeriesIndexTemplate' ,
qualityProfileCollection : qualityProfileCollection ,
//emptyView: NzbDrone.Series.EmptySeriesCollectionView,
emptyView : NzbDrone . Series . Index . EmptySeriesCollectionView ,
getTemplate : function ( ) {
if ( this . viewStyle === 1 ) {
@ -107,7 +114,6 @@ define(['app', 'Quality/QualityProfileCollection', 'Series/Index/SeriesItemView'
if ( $ ( event . currentTarget ) . hasClass ( 'x-series-show-grid' ) ) {
NzbDrone . Config . SeriesViewStyle ( 1 ) ;
}
else {
NzbDrone . Config . SeriesViewStyle ( 0 ) ;
}
@ -117,9 +123,4 @@ define(['app', 'Quality/QualityProfileCollection', 'Series/Index/SeriesItemView'
this . render ( ) ;
}
} ) ;
} ) ;
NzbDrone . Series . Index . EmptySeriesCollectionView = Backbone . Marionette . CompositeView . extend ( {
template : 'Series/Index/EmptySeriesCollectionTemplate' ,
tagName : 'tr'
} ) ;
@ -6,6 +6,6 @@ define([
] , function ( ) {
NzbDrone . Settings . Indexers . IndexersView = Backbone . Marionette . ItemView . extend ( {
template : 'Settings/Indexers/IndexersTemplate' ,
template : 'Settings/Indexers/IndexersTemplate'
} ) ;
} ) ;
@ -1,4 +1,5 @@
define ( [ 'app' ] , function ( ) {
"use strict" ;
define ( [ 'app' ] , function ( ) {
NzbDrone . Shared . NotificationModel = Backbone . Model . extend ( {
mutators : {
@ -0,0 +1,12 @@
"use strict" ;
define ( [ 'app' ] , function ( ) {
NzbDrone . Shared . Toolbar . ToolbarModel = Backbone . Model . extend ( {
defaults : {
"route" : '/nzbdrone/route' ,
"title" : 'Title Goes Here' ,
"tooltip" : undefined
}
} ) ;
} ) ;
@ -0,0 +1,12 @@
"use strict" ;
define ( [ 'app' ] , function ( ) {
NzbDrone . Shared . Toolbar . ToolbarModel = Backbone . Model . extend ( {
defaults : {
"route" : '/nzbdrone/route' ,
"title" : 'Title Goes Here' ,
"tooltip" : undefined
}
} ) ;
} ) ;
@ -0,0 +1,17 @@
"use strict" ;
define ( [ 'app' ] , function ( ) {
NzbDrone . Shared . Toolbar . ToolbarView = Backbone . Marionette . ItemView . extend ( {
template : 'Template' ,
events : {
}
} ) ;
} ) ;
@ -42,6 +42,7 @@ define('app', function () {
window . NzbDrone . AddSeries . RootFolders = { } ;
window . NzbDrone . Quality = { } ;
window . NzbDrone . Shared = { } ;
window . NzbDrone . Shared . Toolbar = { } ;
window . NzbDrone . Upcoming = { } ;
window . NzbDrone . Calendar = { } ;
window . NzbDrone . Settings = { } ;