Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/0db39edb2cce6926e00ad88dca316e3cc5ae1998?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
6 additions and
18 deletions
@ -34,21 +34,8 @@ Backgrid.AirDateCell = Backgrid.Cell.extend({
}
}
} ) ;
} ) ;
Backgrid . EpisodeProgressCell = Backgrid . Cell . extend ( {
Backgrid . TemplateBackedCell = Backgrid . Cell . extend ( {
className : "episode-progress-cell" ,
className : '' ,
template : 'Series/EpisodeProgressTemplate' ,
render : function ( ) {
var data = this . model . toJSON ( ) ;
var html = Marionette . Renderer . render ( this . template , data ) ;
this . $el . html ( html ) ;
return this ;
}
} ) ;
Backgrid . ControlsColumnCell = Backgrid . Cell . extend ( {
className : "controls-cell" ,
template : 'Series/Index/Table/ControlsColumnTemplate' ,
template : 'Series/Index/Table/ControlsColumnTemplate' ,
render : function ( ) {
render : function ( ) {
@ -35,7 +35,7 @@ define([
name : 'title' ,
name : 'title' ,
label : 'Title' ,
label : 'Title' ,
editable : false ,
editable : false ,
cell : 'string' ,
cell : Backgrid . TemplateBackedCell . extend ( { template : 'Series/Index/Table/SeriesTitleTemplate' } ) ,
headerCell : 'nzbDrone'
headerCell : 'nzbDrone'
} ,
} ,
{
{
@ -71,7 +71,7 @@ define([
label : 'Episodes' ,
label : 'Episodes' ,
editable : false ,
editable : false ,
sortable : false ,
sortable : false ,
cell : ' episodeProgress',
cell : Backgrid . TemplateBackedCell . extend ( { template : ' S eries/E pisodeProgressTemplate ' } ) ,
headerCell : 'nzbDrone'
headerCell : 'nzbDrone'
} ,
} ,
{
{
@ -79,7 +79,7 @@ define([
label : '' ,
label : '' ,
editable : false ,
editable : false ,
sortable : false ,
sortable : false ,
cell : 'controlsColumn' ,
cell : Backgrid . TemplateBackedCell . extend ( { template : 'Series/Index/Table/ControlsColumnTemplate' } ) ,
headerCell : 'nzbDrone'
headerCell : 'nzbDrone'
}
}
] ;
] ;
@ -0,0 +1 @@
< a href = "series/details/{{titleSlug}}" > {{title}}< / a >