Files
OCPP.Core/OCPP.Core.Management/Views/Shared/Error.cshtml
nutchayut 88ddddd7c2 inital
2024-05-31 00:38:31 +07:00

35 lines
675 B
Plaintext

@using Microsoft.AspNetCore.Mvc.Localization
@model List<ChargePointsOverviewViewModel>
@inject IViewLocalizer Localizer
@{
ViewData["Title"] = @Localizer["Title"];
}
<br />
<h2 class="text-danger">@Localizer["InfoError"]</h2>
@if (!string.IsNullOrEmpty((string)TempData["ErrMessage"]))
{
<br />
<br />
<p>
<strong>@Localizer["TitleDetail"]</strong>
</p>
<p>
@((string)TempData["ErrMessage"])
</p>
}
else if (!string.IsNullOrEmpty((string)TempData["ErrMsgKey"]))
{
<br />
<br />
<p>
<strong>@Localizer["TitleDetail"]</strong>
</p>
<p>
@Localizer[(string)TempData["ErrMsgKey"]]
</p>
}