lila/app/views/mod/menu.scala.html

27 lines
960 B
HTML

@(active: String)(implicit ctx: Context)
@if(isGranted(_.SeeReport)) {
<a class="@active.active("report")" href="@routes.Report.list">Reports</a>
}
@if(isGranted(_.SeeReport)) {
<a class="@active.active("gamify")" href="@routes.Mod.gamify">Hall of fame</a>
}
@if(isGranted(_.UserSearch)) {
<a class="@active.active("search")" href="@routes.Mod.search">Search users</a>
}
@if(isGranted(_.StreamConfig)) {
<a class="@active.active("stream")" href="@routes.Tv.streamConfig">Streams</a>
}
@if(isGranted(_.ManageTournament)) {
<a class="@active.active("tour")" href="@routes.TournamentCrud.index">Manage tournaments</a>
}
@if(isGranted(_.ManageEvent)) {
<a class="@active.active("event")" href="@routes.EventCrud.index">Manage events</a>
}
@if(isGranted(_.SeeReport)) {
<a class="@active.active("log")" href="@routes.Mod.log">Mod log</a>
}
@if(isGranted(_.StaffForum)) {
<a class="@active.active("forum")" href="@routes.ForumCateg.show("staff")">Staff Forum</a>
}