2019-10-23 14:35:20 -04:00
|
|
|
@model Exception
|
|
|
|
|
|
|
|
@{
|
2018-02-21 20:29:23 -05:00
|
|
|
ViewData["Title"] = "Error";
|
|
|
|
}
|
|
|
|
|
2022-04-19 19:43:58 -04:00
|
|
|
<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>
|