diff --git a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Fields/Common.TextField.cshtml b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Fields/Common.TextField.cshtml index 652feef47..cf10b0d50 100644 --- a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Fields/Common.TextField.cshtml +++ b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Fields/Common.TextField.cshtml @@ -1,3 +1,3 @@ @model Orchard.Core.Common.Fields.TextField -@using Orchard.Utility.Extensions +@using Orchard.Utility.Extensions;

@Model.Name.CamelFriendly(): @Model.Value

\ No newline at end of file diff --git a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.Manage.cshtml b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.Manage.cshtml index 45bdd3478..7340291dc 100644 --- a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.Manage.cshtml +++ b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.Manage.cshtml @@ -1,5 +1,5 @@ @model BodyDisplayViewModel -@using Orchard.Core.Common.ViewModels +@using Orchard.Core.Common.ViewModels;
@Html.ItemEditLinkWithReturnUrl(T("Edit").ToString(), Model.BodyPart.ContentItem)
\ No newline at end of file diff --git a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.ManageWrapperPost.cshtml b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.ManageWrapperPost.cshtml index 9a9ee2c1d..8c4356c0c 100644 --- a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.ManageWrapperPost.cshtml +++ b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.ManageWrapperPost.cshtml @@ -1,5 +1,5 @@ @model BodyDisplayViewModel -@using Orchard.Core.Common.ViewModels +@using Orchard.Core.Common.ViewModels; @/* begin: knowingly broken HTML (hence the ManageWrapperPre and ManageWrapperPost templates) we need "wrapper templates" (among other functionality) in the future of UI composition please do not delete or the front end will be broken when the user is authenticated. */ diff --git a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.ManageWrapperPre.cshtml b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.ManageWrapperPre.cshtml index c9182ef28..930523ad4 100644 --- a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.ManageWrapperPre.cshtml +++ b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.ManageWrapperPre.cshtml @@ -1,3 +1,3 @@ @model BodyDisplayViewModel -@using Orchard.Core.Common.ViewModels +@using Orchard.Core.Common.ViewModels;
\ No newline at end of file diff --git a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.Summary.cshtml b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.Summary.cshtml index 64c03cd9b..aa05472da 100644 --- a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.Summary.cshtml +++ b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.Summary.cshtml @@ -1,5 +1,5 @@ @model BodyDisplayViewModel -@using Orchard.Core.Common.ViewModels +@using Orchard.Core.Common.ViewModels; @/*//doing excerpt generation on the way out for now so we don't stick ourselves with needing to regen excerpts for existing data //also, doing this here, inline, until we have a pluggable processing model (both in and out) //also, ...this is ugly*/ diff --git a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.cshtml b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.cshtml index b3b4584d8..0592419bf 100644 --- a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.cshtml +++ b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Body.cshtml @@ -1,3 +1,3 @@ @model BodyDisplayViewModel -@using Orchard.Core.Common.ViewModels +@using Orchard.Core.Common.ViewModels; @Model.Html \ No newline at end of file diff --git a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Metadata.cshtml b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Metadata.cshtml index d5cbe0eee..fa8036d7e 100644 --- a/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Metadata.cshtml +++ b/src/Orchard.Web/Core/Common/Views/DisplayTemplates/Parts/Common.Metadata.cshtml @@ -1,5 +1,5 @@ @model Orchard.Core.Common.ViewModels.CommonMetadataViewModel -@using Orchard.Core.Common.Extensions +@using Orchard.Core.Common.Extensions; @if (Model.Creator != null) {
@T("Published by {0} {1}", Model.Creator.UserName, Html.PublishedWhen(Model, T))
diff --git a/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Body.cshtml b/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Body.cshtml index dc7e33c1a..580c02232 100644 --- a/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Body.cshtml +++ b/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Body.cshtml @@ -1,5 +1,5 @@ @model BodyEditorViewModel -@using Orchard.Core.Common.ViewModels +@using Orchard.Core.Common.ViewModels;
@Html.Partial("EditorTemplates/" + Model.TextEditorTemplate, Model) diff --git a/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Container.cshtml b/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Container.cshtml index 1548db8f3..6afd59c02 100644 --- a/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Container.cshtml +++ b/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Container.cshtml @@ -1,5 +1,5 @@ @model ContainerEditorViewModel -@using Orchard.Core.Common.ViewModels +@using Orchard.Core.Common.ViewModels;
@Html.HiddenFor(m=>m.ContainerId)
\ No newline at end of file diff --git a/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Owner.cshtml b/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Owner.cshtml index 15e469413..87035578a 100644 --- a/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Owner.cshtml +++ b/src/Orchard.Web/Core/Common/Views/EditorTemplates/Parts/Common.Owner.cshtml @@ -1,5 +1,5 @@ @model OwnerEditorViewModel -@using Orchard.Core.Common.ViewModels +@using Orchard.Core.Common.ViewModels;
@Html.LabelFor(m=>m.Owner) @Html.EditorFor(m=>m.Owner) diff --git a/src/Orchard.Web/Core/Common/Views/EditorTemplates/PlainTextEditor.cshtml b/src/Orchard.Web/Core/Common/Views/EditorTemplates/PlainTextEditor.cshtml index a85559433..b4aab5ad4 100644 --- a/src/Orchard.Web/Core/Common/Views/EditorTemplates/PlainTextEditor.cshtml +++ b/src/Orchard.Web/Core/Common/Views/EditorTemplates/PlainTextEditor.cshtml @@ -1,3 +1,3 @@ @model BodyEditorViewModel -@using Orchard.Core.Common.ViewModels +@using Orchard.Core.Common.ViewModels; @Html.TextArea("Text", Model.Text, 25, 80, new { @class = Model.Format }) \ No newline at end of file diff --git a/src/Orchard.Web/Core/Contents/Views/Admin/List.cshtml b/src/Orchard.Web/Core/Contents/Views/Admin/List.cshtml index 48443cf55..7b357f372 100644 --- a/src/Orchard.Web/Core/Contents/Views/Admin/List.cshtml +++ b/src/Orchard.Web/Core/Contents/Views/Admin/List.cshtml @@ -1,4 +1,4 @@ -@using Orchard.Core.Contents.ViewModels +@using Orchard.Core.Contents.ViewModels; @{ var typeDisplayName = Model.TypeDisplayName; var pageTitle = T("Manage Content"); diff --git a/src/Orchard.Web/Core/Contents/Views/DisplayTemplates/Parts/Contents.Publish.SummaryAdmin.cshtml b/src/Orchard.Web/Core/Contents/Views/DisplayTemplates/Parts/Contents.Publish.SummaryAdmin.cshtml index e2d93ff18..cdd1c59f8 100644 --- a/src/Orchard.Web/Core/Contents/Views/DisplayTemplates/Parts/Contents.Publish.SummaryAdmin.cshtml +++ b/src/Orchard.Web/Core/Contents/Views/DisplayTemplates/Parts/Contents.Publish.SummaryAdmin.cshtml @@ -1,5 +1,5 @@ -@using Orchard.ContentManagement -@using Orchard.Utility.Extensions +@using Orchard.ContentManagement; +@using Orchard.Utility.Extensions; @{ Script.Require("ShapesBase"); } diff --git a/src/Orchard.Web/Core/Contents/Views/Items/Content.SummaryAdmin.cshtml b/src/Orchard.Web/Core/Contents/Views/Items/Content.SummaryAdmin.cshtml index f6850e19e..a082c49f0 100644 --- a/src/Orchard.Web/Core/Contents/Views/Items/Content.SummaryAdmin.cshtml +++ b/src/Orchard.Web/Core/Contents/Views/Items/Content.SummaryAdmin.cshtml @@ -1,5 +1,5 @@ -@using Orchard.ContentManagement -@using Orchard.Utility.Extensions +@using Orchard.ContentManagement; +@using Orchard.Utility.Extensions; @{ ContentItem contentItem = Model.ContentItem; var returnUrl = ViewContext.RequestContext.HttpContext.Request.ToUrlString(); diff --git a/src/Orchard.Web/Core/Localization/Views/Admin/Translate.cshtml b/src/Orchard.Web/Core/Localization/Views/Admin/Translate.cshtml index 6dd93bcb7..64214837e 100644 --- a/src/Orchard.Web/Core/Localization/Views/Admin/Translate.cshtml +++ b/src/Orchard.Web/Core/Localization/Views/Admin/Translate.cshtml @@ -1,5 +1,5 @@ @model AddLocalizationViewModel -@using Orchard.Core.Localization.ViewModels +@using Orchard.Core.Localization.ViewModels; @{ dynamic content = Model.Content; content.Zones.primary.Add(New.Partial(TemplateName: "CultureSelection", Model: Model), "0"); diff --git a/src/Orchard.Web/Core/Messaging/Views/EditorTemplates/Parts/Messaging.MessageSettings.cshtml b/src/Orchard.Web/Core/Messaging/Views/EditorTemplates/Parts/Messaging.MessageSettings.cshtml index d68535ac5..0bde72b23 100644 --- a/src/Orchard.Web/Core/Messaging/Views/EditorTemplates/Parts/Messaging.MessageSettings.cshtml +++ b/src/Orchard.Web/Core/Messaging/Views/EditorTemplates/Parts/Messaging.MessageSettings.cshtml @@ -1,6 +1,6 @@ @model MessageSettingsPartViewModel -@using Orchard.Core.Messaging.Models -@using Orchard.Core.Messaging.ViewModels +@using Orchard.Core.Messaging.Models; +@using Orchard.Core.Messaging.ViewModels;
@T("Messaging")
diff --git a/src/Orchard.Web/Core/Navigation/Views/Admin/Index.cshtml b/src/Orchard.Web/Core/Navigation/Views/Admin/Index.cshtml index 9efc403b4..eb9698417 100644 --- a/src/Orchard.Web/Core/Navigation/Views/Admin/Index.cshtml +++ b/src/Orchard.Web/Core/Navigation/Views/Admin/Index.cshtml @@ -1,7 +1,7 @@ @model NavigationManagementViewModel -@using Orchard.ContentManagement -@using Orchard.Core.Navigation.Models -@using Orchard.Core.Navigation.ViewModels +@using Orchard.ContentManagement; +@using Orchard.Core.Navigation.Models; +@using Orchard.Core.Navigation.ViewModels;

@Html.TitleForPage(T("Manage Main Menu").ToString())

@using (Html.BeginFormAntiForgeryPost()) { diff --git a/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts/Navigation.EditMenuPart.cshtml b/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts/Navigation.EditMenuPart.cshtml index 1e1a048f9..5d7b94c8a 100644 --- a/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts/Navigation.EditMenuPart.cshtml +++ b/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts/Navigation.EditMenuPart.cshtml @@ -1,6 +1,6 @@ @model MenuPart -@using Orchard.Core.Navigation.Models -@using Orchard.Core.Navigation.ViewModels +@using Orchard.Core.Navigation.Models; +@using Orchard.Core.Navigation.ViewModels; @{ Script.Require("ShapesBase"); } diff --git a/src/Orchard.Web/Core/Reports/Views/Admin/Display.cshtml b/src/Orchard.Web/Core/Reports/Views/Admin/Display.cshtml index 6dee247ed..d41f9bda4 100644 --- a/src/Orchard.Web/Core/Reports/Views/Admin/Display.cshtml +++ b/src/Orchard.Web/Core/Reports/Views/Admin/Display.cshtml @@ -1,5 +1,5 @@ @model DisplayReportViewModel -@using Orchard.Core.Reports.ViewModels +@using Orchard.Core.Reports.ViewModels;

@Html.TitleForPage(T("Display Report").ToString())

@using(Html.BeginFormAntiForgeryPost()) { @Html.ValidationSummary() diff --git a/src/Orchard.Web/Core/Reports/Views/Admin/Index.cshtml b/src/Orchard.Web/Core/Reports/Views/Admin/Index.cshtml index 01ac13e91..90249bf4d 100644 --- a/src/Orchard.Web/Core/Reports/Views/Admin/Index.cshtml +++ b/src/Orchard.Web/Core/Reports/Views/Admin/Index.cshtml @@ -1,5 +1,5 @@ @model ReportsAdminIndexViewModel -@using Orchard.Core.Reports.ViewModels +@using Orchard.Core.Reports.ViewModels;

@Html.TitleForPage(T("Manage Reports").ToString())

@using(Html.BeginFormAntiForgeryPost()) { @Html.ValidationSummary() diff --git a/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml b/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml index 44ea24b54..0b26db83a 100644 --- a/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml +++ b/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml @@ -1,5 +1,5 @@ @model Orchard.Core.Routable.ViewModels.RoutableEditorViewModel -@using Orchard.Utility.Extensions +@using Orchard.Utility.Extensions; @{ Script.Require("Slugify"); }
diff --git a/src/Orchard.Web/Core/Settings/Views/Admin/Culture.cshtml b/src/Orchard.Web/Core/Settings/Views/Admin/Culture.cshtml index 82e1eaa3e..9dde5e792 100644 --- a/src/Orchard.Web/Core/Settings/Views/Admin/Culture.cshtml +++ b/src/Orchard.Web/Core/Settings/Views/Admin/Culture.cshtml @@ -1,5 +1,5 @@ @model SiteCulturesViewModel -@using Orchard.Core.Settings.ViewModels +@using Orchard.Core.Settings.ViewModels;

@Html.TitleForPage(T("Cultures").ToString())

@T("Available Cultures")

diff --git a/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts/Settings.SiteSettingsPart.cshtml b/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts/Settings.SiteSettingsPart.cshtml index 696374e97..39954f3f0 100644 --- a/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts/Settings.SiteSettingsPart.cshtml +++ b/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts/Settings.SiteSettingsPart.cshtml @@ -1,5 +1,5 @@ @model Orchard.Core.Settings.ViewModels.SiteSettingsPartViewModel -@using Orchard.Settings +@using Orchard.Settings; @{ var resourceDebugMode = new SelectList(new object[] { new { Id = (int)ResourceDebugMode.FromAppSetting, Text = "Use web.config setting" }, diff --git a/src/Orchard.Web/Core/Shapes/Views/Document.cshtml b/src/Orchard.Web/Core/Shapes/Views/Document.cshtml index ba46a0fd9..98759ff34 100644 --- a/src/Orchard.Web/Core/Shapes/Views/Document.cshtml +++ b/src/Orchard.Web/Core/Shapes/Views/Document.cshtml @@ -1,5 +1,5 @@ -@using Orchard.Mvc.Html -@using Orchard.UI.Resources +@using Orchard.Mvc.Html; +@using Orchard.UI.Resources; @{ RegisterLink(new LinkEntry {Type = "image/x-icon", Rel = "shortcut icon", Href = Url.Content("~/modules/orchard.themes/Content/orchard.ico")}); } diff --git a/src/Orchard.Web/Core/Shapes/Views/User.cshtml b/src/Orchard.Web/Core/Shapes/Views/User.cshtml index f9bc647c5..f11a5ca62 100644 --- a/src/Orchard.Web/Core/Shapes/Views/User.cshtml +++ b/src/Orchard.Web/Core/Shapes/Views/User.cshtml @@ -1,4 +1,4 @@ -@using System.Web.Mvc +@using System.Web.Mvc;
@if (Request.IsAuthenticated) { @T("Welcome, {0}!", WorkContext.CurrentUser.UserName) diff --git a/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/DisplayTemplates/Parts/ArchiveLater.Metadata.SummaryAdmin.cshtml b/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/DisplayTemplates/Parts/ArchiveLater.Metadata.SummaryAdmin.cshtml index 34be7b760..181ea0445 100644 --- a/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/DisplayTemplates/Parts/ArchiveLater.Metadata.SummaryAdmin.cshtml +++ b/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/DisplayTemplates/Parts/ArchiveLater.Metadata.SummaryAdmin.cshtml @@ -1,5 +1,5 @@ @model Orchard.ArchiveLater.ViewModels.ArchiveLaterViewModel -@using Orchard.Mvc.Html +@using Orchard.Mvc.Html; @if ((Model.IsPublished && Model.ScheduledArchiveUtc.HasValue && Model.ScheduledArchiveUtc.Value > DateTime.UtcNow)) {
    diff --git a/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/EditorTemplates/Parts/ArchiveLater.cshtml b/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/EditorTemplates/Parts/ArchiveLater.cshtml index 538e603eb..1d2c1b6a5 100644 --- a/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/EditorTemplates/Parts/ArchiveLater.cshtml +++ b/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/EditorTemplates/Parts/ArchiveLater.cshtml @@ -1,5 +1,5 @@ @model Orchard.ArchiveLater.ViewModels.ArchiveLaterViewModel -@using System.Web.Mvc.Html +@using System.Web.Mvc.Html; @{ Style.Require("jQueryUtils_TimePicker"); Style.Require("jQueryUI_DatePicker"); diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogAdmin/List.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogAdmin/List.cshtml index 591eb2680..f67493b8d 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogAdmin/List.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogAdmin/List.cshtml @@ -1,4 +1,4 @@ -@using Orchard.Blogs.Extensions +@using Orchard.Blogs.Extensions;

    @Html.TitleForPage(T("Manage Blogs").ToString())

    @if (Model.ContentItems.Items.Count > 0) { diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogArchives.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogArchives.cshtml index 34b3fa14c..b8e34dcfc 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogArchives.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogArchives.cshtml @@ -1,5 +1,5 @@ -@using Orchard.Blogs.Extensions -@using Orchard.Blogs.ViewModels +@using Orchard.Blogs.Extensions; +@using Orchard.Blogs.ViewModels; @{ BlogPostArchiveViewModel model = Model.Archives; Style.Require("BlogsArchives"); diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogPost/ListByArchive.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogPost/ListByArchive.cshtml index 99291fe1b..3f1d1f716 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogPost/ListByArchive.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogPost/ListByArchive.cshtml @@ -1,4 +1,4 @@ -@using Orchard.Blogs.Extensions +@using Orchard.Blogs.Extensions;

    @Html.TitleForPage(T("Archives").Text, (string)Model.ArchiveData.Year.ToString(), (string)(Model.ArchiveData.Month > 0 ? new DateTime(Model.ArchiveData.Year, Model.ArchiveData.Month, 1).ToString("MMMM") : null), (string)(Model.ArchiveData.Day > 0 ? Model.ArchiveData.Day.ToString() : null))

    @T("Archives") / diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.Blog.Manage.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.Blog.Manage.cshtml index e707e3f2b..ec9924e89 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.Blog.Manage.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.Blog.Manage.cshtml @@ -1,4 +1,4 @@ -@using Orchard.Blogs.Extensions +@using Orchard.Blogs.Extensions; @{ Style.Require("BlogsAdmin"); } diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.BlogPost.List.Admin.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.BlogPost.List.Admin.cshtml index c567e668a..e71d4bc6b 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.BlogPost.List.Admin.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.BlogPost.List.Admin.cshtml @@ -1,5 +1,5 @@ -@using Orchard.Core.Contents.ViewModels -@using Orchard.Utility.Extensions +@using Orchard.Core.Contents.ViewModels; +@using Orchard.Utility.Extensions; @if (Model.Items.Count > 0) { using (Html.BeginFormAntiForgeryPost(Url.Action("List", "Admin", new { area = "Contents", id = "" }))) {
    diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Admin.Blog.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Admin.Blog.cshtml index a70e25b6e..3847f90ce 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Admin.Blog.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Admin.Blog.cshtml @@ -1,5 +1,5 @@ -@using Orchard.Blogs.Extensions -@using Orchard.Blogs.Models +@using Orchard.Blogs.Extensions; +@using Orchard.Blogs.Models;

    @Html.TitleForPage((string)Model.Title)

    @Display(Model.manage) diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Blog.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Blog.cshtml index 9706d8c52..e99cc1c67 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Blog.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Blog.cshtml @@ -1,5 +1,5 @@ -@using Orchard.Blogs.Extensions -@using Orchard.UI.Resources +@using Orchard.Blogs.Extensions; +@using Orchard.UI.Resources; @{ RegisterLink(new LinkEntry { Rel = "wlwmanifest", Type = "application/wlwmanifest+xml", Href = Url.BlogLiveWriterManifest((string)Model.Slug) }); RegisterLink(new LinkEntry { Rel = "EditURI", Type = "application/rsd+xml", Title = "RSD", Href = Url.BlogRsd((string)Model.Slug) }); diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Edit.BlogPost.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Edit.BlogPost.cshtml index 42697f22e..dfc127ab1 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Edit.BlogPost.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Edit.BlogPost.cshtml @@ -1,4 +1,4 @@ -@using Orchard.Blogs.Models +@using Orchard.Blogs.Models; @{ Html.AddTitleParts((string)Model.Title); BlogPostPart blogPost = Model.ContentItem.Get(typeof(BlogPostPart)); diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.Blog.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.Blog.cshtml index 87722010e..abb445ea0 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.Blog.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.Blog.cshtml @@ -1,5 +1,5 @@ -@using Orchard.Blogs.Extensions -@using Orchard.Blogs.Models +@using Orchard.Blogs.Extensions; +@using Orchard.Blogs.Models;

    @Html.Link((string)Model.Title, Url.Blog((string)Model.Slug))

    @if (!string.IsNullOrEmpty((string)Model.Description)) {

    @Model.Description

    diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.BlogPost.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.BlogPost.cshtml index be565384a..f788fb89e 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.BlogPost.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.BlogPost.cshtml @@ -1,8 +1,8 @@ -@using Orchard.Blogs.Extensions -@using Orchard.Blogs.Models -@using Orchard.Core.Common.Extensions -@using Orchard.Core.Common.Models -@using Orchard.Core.Common.ViewModels +@using Orchard.Blogs.Extensions; +@using Orchard.Blogs.Models; +@using Orchard.Core.Common.Extensions; +@using Orchard.Core.Common.Models; +@using Orchard.Core.Common.ViewModels;

    @Html.Link((string)Model.Title, Url.BlogPost((BlogPostPart)Model.ContentItem.Get(typeof(BlogPostPart))))

    @Html.PublishedState(new CommonMetadataViewModel((CommonPart)Model.ContentItem.Get(typeof(CommonPart))), T) | @Display(Model.meta)
    @Display(Model.primary)
    \ No newline at end of file diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.SummaryAdmin.Blog.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.SummaryAdmin.Blog.cshtml index 4aedc8254..a1cb5f13e 100644 --- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.SummaryAdmin.Blog.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.SummaryAdmin.Blog.cshtml @@ -1,5 +1,5 @@ -@using Orchard.Blogs.Extensions -@using Orchard.Blogs.Models +@using Orchard.Blogs.Extensions; +@using Orchard.Blogs.Models;