mirror of https://github.com/Radarr/Radarr
Clean up rename preview & organize
Fixes #125, #129, BE SURE TO RUN "Update Library" before renaming/organizing.
This commit is contained in:
parent
ae0df2aef0
commit
2730745607
|
@ -11,9 +11,9 @@
|
|||
|
||||
Are you sure you want to update all files in the {{numberOfMovies}} selected movies?
|
||||
|
||||
{{debug}}
|
||||
|
||||
<ul class="selected-series">
|
||||
{{#each movie}}
|
||||
{{#each movies}}
|
||||
<li>{{title}}</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
|
|
|
@ -6,10 +6,10 @@ module.exports = Marionette.ItemView.extend({
|
|||
template : 'Rename/RenamePreviewFormatViewTemplate',
|
||||
|
||||
templateHelpers : function() {
|
||||
var type = this.model.get('seriesType');
|
||||
//var type = this.model.get('seriesType');
|
||||
return {
|
||||
rename : this.naming.get('renameEpisodes'),
|
||||
format : this.naming.get(type + 'EpisodeFormat')
|
||||
format : this.naming.get('standardMovieFormat')
|
||||
};
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue