Nop.Core_4.7/Presentation/Nop.Web/Views/Boards/PostCreate.cshtml

12 lines
526 B
Plaintext

@model EditForumPostModel
@{
Layout = "_ColumnsOne";
NopHtml.AddTitleParts(T("Forum.PageTitle.PostNew").Text);
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.BoardsPostCreateBefore, additionalData = Model })
<form asp-route="PostCreate" method="post">
@await Html.PartialAsync("_CreateUpdatePost", Model)
</form>
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.BoardsPostCreateAfter, additionalData = Model })