Skip to content

Commit 332dca2

Browse files
committed
Fis route to checkin form
1 parent 7d84116 commit 332dca2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/JoinRpg.Portal/Views/CheckIn/CheckIn.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
@if (!Model.Validator.IsApproved && Model.Validator.NotCheckedInAlready)
2222
{
2323
<div class="alert alert-danger">
24-
Заявка находится в статусе @Html.DisplayFor(model => model.ClaimStatus). Регистрация невозможна.
24+
Заявка находится в статусе @Html.DisplayFor(model => model.ClaimStatus). Регистрация невозможна.
2525
<br/>Обратитесь к ответственному мастеру.
2626
</div>
2727
}
2828

29-
<form asp-action="DoCheckIn" asp-route-projectId="Model.ProjectId" asp-route-claimId="@Model.ClaimId" method="post">
29+
<form asp-action="DoCheckIn" asp-route-projectId="@Model.ProjectId" asp-route-claimId="@Model.ClaimId" method="post">
3030
<input type="hidden" name="money" id="money" value="@Model.Validator.FeeDue" />
31-
31+
3232
@if (Model.Validator.FeeDue > 0)
3333
{
3434

0 commit comments

Comments
 (0)