2025-04-11 19:20:02 +00:00
|
|
|
<ng-container>
|
|
|
|
|
<app-header [current_page]="'bans'" height="200px" background_image="/public/img/backgrounds/staff.png"
|
|
|
|
|
[overlay_gradient]="0.5">>
|
|
|
|
|
<div class="title" header-content>
|
|
|
|
|
<h1>Punishment History</h1>
|
|
|
|
|
</div>
|
|
|
|
|
</app-header>
|
|
|
|
|
|
2025-04-11 20:24:25 +00:00
|
|
|
<main>
|
|
|
|
|
<section class="darkmodeSection">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="columnSection">
|
2025-04-11 21:35:57 +00:00
|
|
|
<div class="historyTypeContainer">
|
|
|
|
|
<button class="button-outer" (click)="punishmentType = 'all'">All</button>
|
|
|
|
|
<button class="button-outer" (click)="punishmentType = 'ban'">Bans</button>
|
|
|
|
|
<button class="button-outer" (click)="punishmentType = 'mute'">Mutes</button>
|
|
|
|
|
<button class="button-outer" (click)="punishmentType = 'warn'">Warnings</button>
|
2025-04-11 20:24:25 +00:00
|
|
|
</div>
|
2025-04-11 21:35:57 +00:00
|
|
|
<div class="historySearchContainer">
|
|
|
|
|
<input class="historySearch" type="text" placeholder="Search..">
|
2025-04-11 20:24:25 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-04-11 21:35:57 +00:00
|
|
|
<div class="historyTable">
|
|
|
|
|
<app-history [userType]="userType" [punishmentType]="punishmentType"></app-history>
|
|
|
|
|
</div>
|
2025-04-11 19:56:46 +00:00
|
|
|
</div>
|
2025-04-11 20:24:25 +00:00
|
|
|
</section>
|
|
|
|
|
</main>
|
2025-04-11 19:20:02 +00:00
|
|
|
</ng-container>
|