mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-24 06:00:34 -05:00
Namespace Update (SLC/Data Ignored)
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
@model IEnumerable<WebfrontCore.QueryHelpers.Models.ClientResourceResponse>
|
||||
@using SharedLibraryCore
|
||||
@model IEnumerable<IW4MAdmin.WebfrontCore.QueryHelpers.Models.ClientResourceResponse>
|
||||
@{
|
||||
var loc = Utilities.CurrentLocalization.LocalizationIndex;
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
@model IList<SharedLibraryCore.Dtos.PlayerInfo>
|
||||
@using SharedLibraryCore
|
||||
@model IList<SharedLibraryCore.Dtos.PlayerInfo>
|
||||
@{
|
||||
var loc = Utilities.CurrentLocalization.LocalizationIndex;
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
@using WebfrontCore.QueryHelpers.Models
|
||||
@using Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
@using WebfrontCore.Permissions
|
||||
@using Data.Models.Client
|
||||
@model WebfrontCore.QueryHelpers.Models.ClientResourceResponse
|
||||
@using IW4MAdmin.WebfrontCore.Permissions
|
||||
@using IW4MAdmin.WebfrontCore.QueryHelpers.Models
|
||||
@using SharedLibraryCore
|
||||
|
||||
@{
|
||||
var loc = Utilities.CurrentLocalization.LocalizationIndex;
|
||||
|
@ -1,4 +1,4 @@
|
||||
@model IEnumerable<WebfrontCore.QueryHelpers.Models.ClientResourceResponse>
|
||||
@model IEnumerable<IW4MAdmin.WebfrontCore.QueryHelpers.Models.ClientResourceResponse>
|
||||
|
||||
@foreach (var client in Model)
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@using SharedLibraryCore
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@model SharedLibraryCore.Helpers.ResourceQueryHelperResult<MessageResponse>
|
||||
|
||||
<div class="content mt-0">
|
||||
|
@ -1,4 +1,5 @@
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@using SharedLibraryCore
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@model IEnumerable<MessageResponse>
|
||||
|
||||
@foreach (var message in Model)
|
||||
|
@ -1,4 +1,5 @@
|
||||
@model Dictionary<Data.Models.Client.EFClient.Permission, IList<SharedLibraryCore.Dtos.ClientInfo>>
|
||||
@using SharedLibraryCore
|
||||
@model Dictionary<Data.Models.Client.EFClient.Permission, IList<SharedLibraryCore.Dtos.ClientInfo>>
|
||||
<div class="content mt-0">
|
||||
<h4 class="content-title mt-20">@ViewBag.Title</h4>
|
||||
|
||||
|
@ -1,8 +1,9 @@
|
||||
@using SharedLibraryCore.Interfaces
|
||||
@using Data.Models
|
||||
@using Data.Models.Client
|
||||
@using WebfrontCore.Permissions
|
||||
@using WebfrontCore.ViewModels
|
||||
@using IW4MAdmin.WebfrontCore.Permissions
|
||||
@using IW4MAdmin.WebfrontCore.ViewModels
|
||||
@using SharedLibraryCore
|
||||
@model SharedLibraryCore.Dtos.PlayerInfo
|
||||
@{
|
||||
var match = System.Text.RegularExpressions.Regex.Match(Model.Name.ToUpper(), "[A-Z]").Value;
|
||||
|
@ -1,4 +1,5 @@
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@using SharedLibraryCore
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@model AdministeredPenaltyResponse
|
||||
@{
|
||||
var localizationKey = $"WEBFRONT_CLIENT_META_PENALIZED_{Model.PenaltyType.ToString().ToUpper()}_V2";
|
||||
|
@ -1,4 +1,5 @@
|
||||
@using Data.Models
|
||||
@using SharedLibraryCore
|
||||
@model SharedLibraryCore.Dtos.Meta.Responses.ConnectionHistoryResponse
|
||||
@{
|
||||
var localizationKey = $"WEBFRONT_CLIENT_META_CONNECTION_{Model.ConnectionType.ToString().ToUpper()}";
|
||||
|
@ -1,4 +1,5 @@
|
||||
@using Humanizer
|
||||
@using SharedLibraryCore
|
||||
@model IEnumerable<SharedLibraryCore.Dtos.Meta.Responses.InformationResponse>
|
||||
@{
|
||||
var informationMeta = Model
|
||||
|
@ -1,4 +1,5 @@
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@using SharedLibraryCore
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@model MessageResponse
|
||||
|
||||
@if (TempData["ShowMetaHeader"] as bool? ?? false)
|
||||
|
@ -1,4 +1,5 @@
|
||||
@model DateTime
|
||||
@using SharedLibraryCore
|
||||
@model DateTime
|
||||
@{ Layout = null;}
|
||||
<div class="pt-5 text-light-dm text-dark-lm font-size-18 ">
|
||||
<span>@Model.HumanizeForCurrentCulture()</span>
|
||||
|
@ -1,4 +1,5 @@
|
||||
@model SharedLibraryCore.Dtos.Meta.Responses.PermissionLevelChangedResponse
|
||||
@using SharedLibraryCore
|
||||
@model SharedLibraryCore.Dtos.Meta.Responses.PermissionLevelChangedResponse
|
||||
|
||||
<has-permission entity="ClientLevel" required-permission="Read">
|
||||
@if (TempData["ShowMetaHeader"] as bool? ?? false)
|
||||
|
@ -1,4 +1,6 @@
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@using Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
@using SharedLibraryCore
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@model ReceivedPenaltyResponse
|
||||
|
||||
@{
|
||||
|
@ -1,4 +1,5 @@
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@using SharedLibraryCore
|
||||
@using SharedLibraryCore.Dtos.Meta.Responses
|
||||
@model UpdatedAliasResponse
|
||||
|
||||
@if (TempData["ShowMetaHeader"] as bool? ?? false)
|
||||
|
@ -1,15 +1,17 @@
|
||||
@using SharedLibraryCore.Configuration
|
||||
@using Data.Models.Client.Stats
|
||||
@using Stats.Helpers
|
||||
@using Data.Models.Client
|
||||
@using Data.Models.Client.Stats.Reference
|
||||
@using Humanizer
|
||||
@using Humanizer.Localisation
|
||||
@using IW4MAdmin.Plugins.Stats
|
||||
@using WebfrontCore.ViewModels
|
||||
@using System.Text.Json
|
||||
@using IW4MAdmin.Plugins.Stats.Web.Dtos
|
||||
@model Stats.Dtos.AdvancedStatsInfo
|
||||
@using IW4MAdmin.Plugins.Stats
|
||||
@using IW4MAdmin.Plugins.Stats.Dtos
|
||||
@using IW4MAdmin.Plugins.Stats.Helpers
|
||||
@using IW4MAdmin.WebfrontCore.ViewModels
|
||||
@using SharedLibraryCore
|
||||
@using Stats
|
||||
@model IW4MAdmin.Plugins.Stats.Dtos.AdvancedStatsInfo
|
||||
|
||||
@{
|
||||
ViewBag.Title = ViewBag.Localization["WEBFRONT_ADV_STATS_TITLE"];
|
||||
|
@ -1,6 +1,8 @@
|
||||
@using IW4MAdmin.Plugins.Stats
|
||||
@using System.Text.Json
|
||||
@model List<IW4MAdmin.Plugins.Stats.Web.Dtos.TopStatsInfo>
|
||||
@using System.Text.Json
|
||||
@using IW4MAdmin.Plugins.Stats
|
||||
@using SharedLibraryCore
|
||||
@using Stats
|
||||
@model List<IW4MAdmin.Plugins.Stats.Dtos.TopStatsInfo>
|
||||
@{
|
||||
Layout = null;
|
||||
var loc = Utilities.CurrentLocalization.LocalizationIndex.Set;
|
||||
|
@ -1,5 +1,6 @@
|
||||
@model IEnumerable<SharedLibraryCore.Dtos.ServerInfo>
|
||||
@using WebfrontCore.ViewModels
|
||||
@using IW4MAdmin.WebfrontCore.ViewModels
|
||||
@using SharedLibraryCore
|
||||
|
||||
<div class="content mt-20 row">
|
||||
<div class="col-12 col-lg-9 mt-0">
|
||||
|
@ -1,4 +1,5 @@
|
||||
@model IEnumerable<Data.Models.Client.Stats.EFACSnapshot>
|
||||
@using SharedLibraryCore
|
||||
@model IEnumerable<Data.Models.Client.Stats.EFACSnapshot>
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
|
Reference in New Issue
Block a user