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