22 lines
No EOL
558 B
Text
22 lines
No EOL
558 B
Text
@page "/mod"
|
|
@using Iceshrimp.Assets.PhosphorIcons
|
|
@using Iceshrimp.Frontend.Components
|
|
@using Iceshrimp.Frontend.Localization
|
|
@using Microsoft.AspNetCore.Authorization
|
|
@using Microsoft.AspNetCore.Components.Sections
|
|
@using Microsoft.Extensions.Localization
|
|
@attribute [Authorize(Roles = "moderator")]
|
|
@layout ModerationLayout
|
|
@inject IStringLocalizer<Localization> Loc;
|
|
|
|
<SectionContent SectionName="top-bar">
|
|
<Icon Name="Icons.Shield"></Icon>
|
|
@Loc["Moderation"]
|
|
</SectionContent>
|
|
|
|
<div class="body">
|
|
<i>Moderation overview</i>
|
|
</div>
|
|
|
|
@code {
|
|
} |