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

13 lines
509 B
Plaintext
Raw Normal View History

@model int?
2019-10-23 14:35:20 -04: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>
<strong class="text-warning">
@if (Model.HasValue && Model.Value == 404)
2019-10-23 14:35:20 -04:00
{
@SharedLibraryCore.Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_ERROR_NOTFOUND"]
}
</strong>