97d582e733
- SEMI_ok button cambio stato - ok paginatore - ok button add new
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
@inherits LayoutComponentBase
|
|
@using WebDoorCreator.UI.Components.Gen
|
|
|
|
<PageTitle>WebDoorCreator.UI</PageTitle>
|
|
|
|
<div class="page">
|
|
@*<div class="sidebar">
|
|
<NavMenu />
|
|
</div>*@
|
|
|
|
|
|
|
|
<main>
|
|
|
|
<div>
|
|
<NavMenuHorizontal></NavMenuHorizontal>
|
|
</div>
|
|
|
|
@*@if (NavManager.Uri.Contains("OrderDetails"))
|
|
{
|
|
<article class="px-2 content">
|
|
@Body
|
|
</article>
|
|
}
|
|
else if (NavManager.Uri.Contains("DoorDefinition"))
|
|
{
|
|
<article class="px-4 py-0 content">
|
|
@Body
|
|
</article>
|
|
}
|
|
else
|
|
{
|
|
}*@
|
|
<article class="px-4 content">
|
|
@Body
|
|
</article>
|
|
@*<div class="fixed-bottom bottom-row px-2">
|
|
<CmpFooter></CmpFooter>
|
|
</div>*@
|
|
@*<div class="bottom-row px-4 auth">
|
|
<LoginDisplay />
|
|
</div>*@
|
|
</main>
|
|
</div>
|
|
@*<footer class="bottom-row footer border-top pl-3 text-muted">
|
|
<div class="d-flex justify-content-between w-100 px-4">
|
|
© 2023 - WebDoorCreator.UI
|
|
</div>
|
|
</footer>*@
|