yavsc/src/Yavsc/Views/LiveFlow/Delete.cshtml

52 lines
1.3 KiB
Text
Raw Normal View History

2019-02-08 10:22:52 +00:00
@model Yavsc.Models.Streaming.LiveFlow
@{
2019-06-23 00:05:23 +01:00
ViewData["Title"] = @SR["Delete"];
2019-02-08 10:22:52 +00:00
}
2019-06-23 00:05:23 +01:00
<h2>@SR["Delete"]</h2>
2019-02-08 10:22:52 +00:00
2019-06-23 00:05:23 +01:00
<h3>@SR["AreYourSureYouWantToDeleteThis"]</h3>
2019-02-08 10:22:52 +00:00
<div>
<h4>LiveFlow</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.DifferedFileName)
</dt>
<dd>
@Html.DisplayFor(model => model.DifferedFileName)
</dd>
<dt>
@Html.DisplayNameFor(model => model.MediaType)
</dt>
<dd>
@Html.DisplayFor(model => model.MediaType)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Pitch)
</dt>
<dd>
@Html.DisplayFor(model => model.Pitch)
</dd>
<dt>
@Html.DisplayNameFor(model => model.SequenceNumber)
</dt>
<dd>
@Html.DisplayFor(model => model.SequenceNumber)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Title)
</dt>
<dd>
@Html.DisplayFor(model => model.Title)
</dd>
</dl>
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
2019-06-23 00:05:23 +01:00
<a asp-action="Index">@SR["Back to List"]</a>
2019-02-08 10:22:52 +00:00
</div>
</form>
</div>