├── .gitignore ├── LICENCE.txt ├── README.md └── src ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── DemoMvcApp ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Content │ ├── Site.css │ └── themes │ │ └── base │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui.css │ │ ├── jquery.ui.accordion.css │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.selectable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.tabs.css │ │ ├── jquery.ui.theme.css │ │ └── minified │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui.min.css │ │ ├── jquery.ui.accordion.min.css │ │ ├── jquery.ui.autocomplete.min.css │ │ ├── jquery.ui.button.min.css │ │ ├── jquery.ui.core.min.css │ │ ├── jquery.ui.datepicker.min.css │ │ ├── jquery.ui.dialog.min.css │ │ ├── jquery.ui.progressbar.min.css │ │ ├── jquery.ui.resizable.min.css │ │ ├── jquery.ui.selectable.min.css │ │ ├── jquery.ui.slider.min.css │ │ ├── jquery.ui.tabs.min.css │ │ └── jquery.ui.theme.min.css ├── Controllers │ ├── Home │ │ ├── ChildModel.cs │ │ ├── HomeController.cs │ │ ├── HomeModel.cs │ │ └── SampleModel.cs │ └── Testing │ │ ├── TemplateTestHelper.cs │ │ └── TestingController.cs ├── DemoMvcApp.csproj ├── Global.asax ├── Global.asax.cs ├── Html │ ├── DisplayExtensions.cs │ ├── EditorExtensions.cs │ ├── TemplateHelper.cs │ └── TemplateParams.cs ├── Properties │ └── AssemblyInfo.cs ├── Views │ ├── Home │ │ ├── DisplaySectionsDemo.cshtml │ │ ├── DisplayTemplatesDemo.cshtml │ │ ├── EditorSectionsDemo.cshtml │ │ ├── EditorTemplatesDemo.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── DisplayTemplates │ │ │ ├── Boolean.cshtml │ │ │ ├── Collection.cshtml │ │ │ ├── Decimal.cshtml │ │ │ ├── DisplaySection.cshtml │ │ │ ├── Double.cshtml │ │ │ ├── EmailAddress.cshtml │ │ │ ├── Float.cshtml │ │ │ ├── HiddenInput.cshtml │ │ │ ├── Html.cshtml │ │ │ ├── Object.cshtml │ │ │ ├── String.cshtml │ │ │ ├── Text.cshtml │ │ │ ├── Url.cshtml │ │ │ └── _Layout.cshtml │ │ ├── EditorTemplates │ │ │ ├── Boolean.cshtml │ │ │ ├── Byte.cshtml │ │ │ ├── Collection.cshtml │ │ │ ├── Date.cshtml │ │ │ ├── DateTime.cshtml │ │ │ ├── Decimal.cshtml │ │ │ ├── EditorSection.cshtml │ │ │ ├── EmailAddress.cshtml │ │ │ ├── HiddenInput.cshtml │ │ │ ├── HtmlInput.cshtml │ │ │ ├── Int32.cshtml │ │ │ ├── Int64.cshtml │ │ │ ├── MultilineText.cshtml │ │ │ ├── Number.cshtml │ │ │ ├── Object.cshtml │ │ │ ├── Password.cshtml │ │ │ ├── PhoneNumber.cshtml │ │ │ ├── SByte.cshtml │ │ │ ├── Single.cshtml │ │ │ ├── String.cshtml │ │ │ ├── Text.cshtml │ │ │ ├── Time.cshtml │ │ │ ├── UInt32.cshtml │ │ │ ├── UInt64.cshtml │ │ │ ├── Url.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Testing │ │ └── Index.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── packages.config └── RazorDisplayEditorTemplates.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/README.md -------------------------------------------------------------------------------- /src/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/.nuget/NuGet.Config -------------------------------------------------------------------------------- /src/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/.nuget/NuGet.exe -------------------------------------------------------------------------------- /src/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/.nuget/NuGet.targets -------------------------------------------------------------------------------- /src/DemoMvcApp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/Site.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.accordion.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.all.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.base.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.button.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.core.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.dialog.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.resizable.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.selectable.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.slider.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.tabs.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/jquery.ui.theme.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery-ui.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.accordion.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.autocomplete.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.button.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.core.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.datepicker.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.dialog.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.progressbar.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.resizable.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.selectable.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.slider.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.tabs.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Content/themes/base/minified/jquery.ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Content/themes/base/minified/jquery.ui.theme.min.css -------------------------------------------------------------------------------- /src/DemoMvcApp/Controllers/Home/ChildModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Controllers/Home/ChildModel.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Controllers/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Controllers/Home/HomeController.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Controllers/Home/HomeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Controllers/Home/HomeModel.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Controllers/Home/SampleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Controllers/Home/SampleModel.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Controllers/Testing/TemplateTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Controllers/Testing/TemplateTestHelper.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Controllers/Testing/TestingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Controllers/Testing/TestingController.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/DemoMvcApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/DemoMvcApp.csproj -------------------------------------------------------------------------------- /src/DemoMvcApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Global.asax -------------------------------------------------------------------------------- /src/DemoMvcApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Global.asax.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Html/DisplayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Html/DisplayExtensions.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Html/EditorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Html/EditorExtensions.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Html/TemplateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Html/TemplateHelper.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Html/TemplateParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Html/TemplateParams.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Home/DisplaySectionsDemo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Home/DisplaySectionsDemo.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Home/DisplayTemplatesDemo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Home/DisplayTemplatesDemo.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Home/EditorSectionsDemo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Home/EditorSectionsDemo.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Home/EditorTemplatesDemo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Home/EditorTemplatesDemo.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/Boolean.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/Boolean.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/Collection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/Collection.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/Decimal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/Decimal.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/DisplaySection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/DisplaySection.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/Double.cshtml: -------------------------------------------------------------------------------- 1 | @model double 2 | @Html.Partial("DisplayTemplates/Decimal") -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/EmailAddress.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/EmailAddress.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/Float.cshtml: -------------------------------------------------------------------------------- 1 | @model double 2 | @Html.Partial("~/Views/Shared/DisplayTemplates/Decimal.cshtml") -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/HiddenInput.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/HiddenInput.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/Html.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/Html.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/Object.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/Object.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/String.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/String.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/Text.cshtml: -------------------------------------------------------------------------------- 1 | @model dynamic 2 | @Html.Partial("DisplayTemplates/String") -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/Url.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/Url.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/DisplayTemplates/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/DisplayTemplates/_Layout.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Boolean.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/Boolean.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Byte.cshtml: -------------------------------------------------------------------------------- 1 | @Html.Partial("~/Views/Shared/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Collection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/Collection.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Date.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/Date.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/DateTime.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/DateTime.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Decimal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/Decimal.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/EditorSection.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/EditorSection.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/EmailAddress.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/EmailAddress.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/HiddenInput.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/HiddenInput.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/HtmlInput.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/HtmlInput.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Int32.cshtml: -------------------------------------------------------------------------------- 1 | @Html.Partial("~/Views/Shared/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Int64.cshtml: -------------------------------------------------------------------------------- 1 | @Html.Partial("~/Views/Shared/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/MultilineText.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/MultilineText.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Number.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/Number.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Object.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/Object.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Password.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/Password.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/PhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/PhoneNumber.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/SByte.cshtml: -------------------------------------------------------------------------------- 1 | @Html.Partial("~/Views/Shared/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Single.cshtml: -------------------------------------------------------------------------------- 1 | @Html.Partial("~/Views/Shared/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/String.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/String.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Text.cshtml: -------------------------------------------------------------------------------- 1 | @Html.Partial("~/Views/Shared/EditorTemplates/String.cshtml") 2 | -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Time.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/Time.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/UInt32.cshtml: -------------------------------------------------------------------------------- 1 | @Html.Partial("~/Views/Shared/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/UInt64.cshtml: -------------------------------------------------------------------------------- 1 | @Html.Partial("~/Views/Shared/EditorTemplates/Number.cshtml") 2 | -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/Url.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/Url.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/EditorTemplates/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/EditorTemplates/_Layout.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Testing/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Testing/Index.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/Web.config -------------------------------------------------------------------------------- /src/DemoMvcApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/DemoMvcApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Web.Debug.config -------------------------------------------------------------------------------- /src/DemoMvcApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Web.Release.config -------------------------------------------------------------------------------- /src/DemoMvcApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/Web.config -------------------------------------------------------------------------------- /src/DemoMvcApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/DemoMvcApp/packages.config -------------------------------------------------------------------------------- /src/RazorDisplayEditorTemplates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danmalcolm/mvc-razor-display-and-editor-templates/HEAD/src/RazorDisplayEditorTemplates.sln --------------------------------------------------------------------------------