1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

add permission level changed meta

This commit is contained in:
RaidMax
2022-02-23 12:47:00 -06:00
parent a4c1060ccc
commit 385464f1dc
9 changed files with 170 additions and 32 deletions

View File

@ -0,0 +1,29 @@
@model SharedLibraryCore.Dtos.Meta.Responses.PermissionLevelChangedResponse
@foreach (var token in Utilities.SplitTranslationTokens("WEBFRONT_CLIENT_META_PERMISSION_CHANGED"))
{
if (token.IsInterpolation)
{
switch (token.MatchValue)
{
case "permission":
<span class="level-color-@((int)Model.CurrentPermissionLevel)">@Model.CurrentPermissionLevel.ToLocalizedLevelName()</span>
break;
case "originClient":
<span class="text-highlight">
<a class="link-inverse" href="@Model.ChangedById">
<color-code value="@Model.ChangedByName"></color-code>
</a>
</span>
break;
case "type":
<span class="text-white-50">@token.TranslationValue</span>
break;
}
}
else
{
<span class="text-muted">@token.MatchValue</span>
}
}