FIXME Razor page errors

This commit is contained in:
Paul Schneider
2023-03-20 09:13:16 +00:00
parent 8b607e2606
commit e1812737bd
234 changed files with 859 additions and 856 deletions

View File

@ -1,16 +1,16 @@
@model Yavsc.Models.Streaming.LiveFlow
@{
ViewData["Title"] = SR["Edit"];
ViewData["Title"] = "Edit";
}
<h2>@SR["Edit"]</h2>
<h2>Edit</h2>
<form asp-action="AdminEdit">
<div class="form-horizontal">
<h4>LiveFlow</h4>
<hr />
<div asp-validation-summary="ValidationSummary.ModelOnly" class="text-danger"></div>
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<input type="hidden" asp-for="Id" />
<div class="form-group">
<label asp-for="DifferedFileName" class="col-md-2 control-label"></label>
@ -63,6 +63,6 @@
</form>
<div>
<a asp-action="Index">@SR["Back to List"]</a>
<a asp-action="Index">Back to List</a>
</div>