mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-07-15 10:34:34 +08:00
Corrected site settings default location
--HG-- branch : dev
This commit is contained in:
parent
5a8edb7086
commit
16df5c2955
@ -2,7 +2,6 @@
|
||||
@using (Html.BeginFormAntiForgeryPost()) {
|
||||
@Html.ValidationSummary()
|
||||
|
||||
@Display(Model.body)
|
||||
@Display(Model.primary)
|
||||
<fieldset>
|
||||
<input class="button primaryAction" type="submit" value="@T("Save")" />
|
||||
|
@ -5,7 +5,7 @@ using Orchard.ContentManagement.MetaData;
|
||||
namespace Orchard.ContentManagement.Drivers {
|
||||
public abstract class ContentPartDriver<TContent> : IContentPartDriver where TContent : ContentPart, new() {
|
||||
protected virtual string Prefix { get { return ""; } }
|
||||
protected virtual string Zone { get { return "body"; } }
|
||||
protected virtual string Zone { get { return "primary"; } }
|
||||
|
||||
DriverResult IContentPartDriver.BuildDisplayShape(BuildDisplayModelContext context) {
|
||||
var part = context.ContentItem.As<TContent>();
|
||||
|
Loading…
Reference in New Issue
Block a user