mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 10:34:22 +00:00
16 lines
641 B
Plaintext
16 lines
641 B
Plaintext
@namespace Oqtane.Themes.Controls
|
|
@inherits ContainerBase
|
|
@attribute [OqtaneIgnore]
|
|
|
|
@if (PageState.EditMode && UserSecurity.IsAuthorized(PageState.User, PermissionNames.Edit, PageState.Page.PermissionList) && PageState.Action == Constants.DefaultAction)
|
|
{
|
|
@if (PageState.Site.RenderMode == RenderModes.Interactive)
|
|
{
|
|
<ModuleActionsInteractive PageState="@PageState" ModuleState="@ModuleState" />
|
|
}
|
|
else
|
|
{
|
|
<ModuleActionsInteractive PageState="@PageState" ModuleState="@ModuleState" @rendermode="@InteractiveRenderMode.GetInteractiveRenderMode(PageState.Site.Runtime, PageState.Site.Prerender)" />
|
|
}
|
|
}
|