1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-18 02:58:10 -05:00
Files
IW4M-Admin/WebfrontCore/Views/Shared/Error.cshtml
2024-07-16 22:27:27 +01:00

18 lines
573 B
Plaintext

@using SharedLibraryCore
@model Exception
@{
ViewData["Title"] = "Error";
}
<div class="content">
<h2 class="content-title text-danger">@Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_ERROR_GENERIC_TITLE"]</h2>
<h2 class="content-title text-muted">@Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_ERROR_GENERIC_DESC"]</h2>
<strong class="text-warning">
@if (Model != null)
{
@Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_ERROR_CODE"].FormatExt(Model.Message)
}
</strong>
</div>