+
+
+ @Html.SmartLabelFor(model => model.MyFirstSetting)
+
+
+ @Html.SettingEditorFor(model => model.MyFirstSetting)
+ @Html.ValidationMessageFor(model => model.MyFirstSetting)
+
+
+
+
+
+
+
+
+
+}
\ No newline at end of file
diff --git a/src/Plugins/SmartStore.StrubeExport/Views/StrubeExport/ProfileConfiguration.cshtml b/src/Plugins/SmartStore.StrubeExport/Views/StrubeExport/ProfileConfiguration.cshtml
new file mode 100644
index 0000000000..48e5713759
--- /dev/null
+++ b/src/Plugins/SmartStore.StrubeExport/Views/StrubeExport/ProfileConfiguration.cshtml
@@ -0,0 +1,44 @@
+@using SmartStore.StrubeExport;
+@using SmartStore.StrubeExport.Providers
+@using SmartStore.StrubeExport.Models;
+@model ProfileConfigurationModel
+@{
+ Layout = null;
+}
+
+
+
+
+
+ @T("Plugins.SmartStore.StrubeExport.GeneralSettings")
+
+ |
+
+
+
+ @Html.SmartLabelFor(m => m.ExportShipAddress)
+ |
+
+ @Html.EditorFor(m => m.ExportShipAddress)
+ @Html.ValidationMessageFor(m => m.ExportShipAddress)
+ |
+
+
+
+ @Html.SmartLabelFor(m => m.SuppressPrice)
+ |
+
+ @Html.EditorFor(m => m.SuppressPrice)
+ @Html.ValidationMessageFor(m => m.SuppressPrice)
+ |
+
+
+
+ @Html.SmartLabelFor(m => m.SuppressBank)
+ |
+
+ @Html.EditorFor(m => m.SuppressBank)
+ @Html.ValidationMessageFor(m => m.SuppressBank)
+ |
+
+
diff --git a/src/Plugins/SmartStore.StrubeExport/Views/Web.config b/src/Plugins/SmartStore.StrubeExport/Views/Web.config
new file mode 100644
index 0000000000..82cfd62c51
--- /dev/null
+++ b/src/Plugins/SmartStore.StrubeExport/Views/Web.config
@@ -0,0 +1,54 @@
+
+
+