Use this feature if you have a remotely running Download Client. NzbDrone will use the information provided to translate the paths provided by the Download Client API to something NzbDrone can access and import.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingItemView.js b/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingItemView.js
new file mode 100644
index 000000000..9a98d046e
--- /dev/null
+++ b/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingItemView.js
@@ -0,0 +1,26 @@
+'use strict';
+
+define([
+ 'AppLayout',
+ 'marionette',
+ 'Settings/DownloadClient/RemotePathMapping/RemotePathMappingEditView'
+], function (AppLayout, Marionette, EditView) {
+
+ return Marionette.ItemView.extend({
+ template : 'Settings/DownloadClient/RemotePathMapping/RemotePathMappingItemViewTemplate',
+ className : 'row',
+
+ events: {
+ 'click .x-edit' : '_editMapping'
+ },
+
+ initialize: function () {
+ this.listenTo(this.model, 'sync', this.render);
+ },
+
+ _editMapping: function() {
+ var view = new EditView({ model: this.model, targetCollection: this.model.collection});
+ AppLayout.modalRegion.show(view);
+ }
+ });
+});
diff --git a/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingItemViewTemplate.hbs b/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingItemViewTemplate.hbs
new file mode 100644
index 000000000..2aecc5417
--- /dev/null
+++ b/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingItemViewTemplate.hbs
@@ -0,0 +1,12 @@
+
+