IW4M-Admin/WebfrontCore/Views/Shared/Error.cshtml

16 lines
540 B
Plaintext
Raw Normal View History

2019-10-23 14:35:20 -04:00
@model Exception
@using SharedLibraryCore
@{
2018-02-21 20:29:23 -05:00
ViewData["Title"] = "Error";
}
<h4 class="text-danger">@SharedLibraryCore.Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_ERROR_GENERIC_TITLE"]</h4>
<h4 class="text-danger">@SharedLibraryCore.Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_ERROR_GENERIC_DESC"]</h4>
2019-10-23 14:35:20 -04:00
<strong class="text-warning">
@if (Model != null)
{
@SharedLibraryCore.Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_ERROR_CODE"].FormatExt(Model.Message);
}
</strong>