13 lines
509 B
Plaintext
13 lines
509 B
Plaintext
@model int?
|
|
@{
|
|
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)
|
|
{
|
|
@SharedLibraryCore.Utilities.CurrentLocalization.LocalizationIndex["WEBFRONT_ERROR_NOTFOUND"]
|
|
}
|
|
</strong> |