Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/8b3b46b724631622b26e771aedc0741b04f2f4cc?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
114 additions and
83 deletions
@ -5,6 +5,7 @@ var RootFolderLayout = require('./RootFolders/RootFolderLayout');
var ExistingMoviesCollectionView = require ( './Existing/AddExistingMovieCollectionView' ) ;
var AddMoviesView = require ( './AddMoviesView' ) ;
var ProfileCollection = require ( '../Profile/ProfileCollection' ) ;
var ListCollection = require ( "../Settings/NetImport/NetImportCollection" ) ;
var RootFolderCollection = require ( './RootFolders/RootFolderCollection' ) ;
require ( '../Movies/MoviesCollection' ) ;
@ -30,6 +31,13 @@ module.exports = Marionette.Layout.extend({
RootFolderCollection . fetch ( ) . done ( function ( ) {
RootFolderCollection . synced = true ;
} ) ;
this . templateHelpers = { }
this . listCollection = new ListCollection ( ) ;
this . templateHelpers . lists = this . listCollection . toJSON ( ) ;
this . listenTo ( this . listCollection , 'all' , this . _listsUpdated ) ;
this . listCollection . fetch ( ) ;
} ,
_toggleExisting : function ( e ) {
@ -44,6 +52,11 @@ module.exports = Marionette.Layout.extend({
this . workspace . show ( new AddMoviesView ( ) ) ;
} ,
_listsUpdated : function ( ) {
this . templateHelpers . lists = this . listCollection . toJSON ( ) ;
this . render ( ) ;
} ,
_folderSelected : function ( options ) {
vent . trigger ( vent . Commands . CloseModalCommand ) ;
this . workspace . show ( new ExistingMoviesCollectionView ( { model : options . model } ) ) ;
@ -33,6 +33,14 @@
</div>
</div>
</div>
<div class="form-group" style="margin-bottom: 0px;">
<label class="col-sm-3 control-label">Lists</label>
<div class="col-sm-8">
{{ > ListSelectionPartial lists }}
</div>
</div>
</div>
</div>
</div>
@ -0,0 +1,10 @@
<select class="col-md-4 form-control x-root-folder" validation-name="RootFolderPath">
{{ # if this }}
{{ # each this }}
<option value=" {{ id }} "> {{ name }} </option>
{{ / each }}
{{ else }}
<option value="">Select List</option>
{{ / if }}
<option value="addNew">Add a new list</option>
</select>