21 lines
407 B
Plaintext
21 lines
407 B
Plaintext
@using Microsoft.AspNetCore.Authorization
|
|
|
|
@inherits LayoutComponentBase
|
|
@layout CouchLog.Components.Layout.MainLayout
|
|
|
|
@attribute [Authorize(Roles = "Admin")]
|
|
|
|
<h1>Manage CouchLog</h1>
|
|
|
|
<div>
|
|
<h2></h2>
|
|
<hr />
|
|
<div class="row">
|
|
<div class="col-lg-3">
|
|
<AdminSettingsNavMenu />
|
|
</div>
|
|
<div class="col-lg-9">
|
|
@Body
|
|
</div>
|
|
</div>
|
|
</div> |