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

22 lines
506 B
Text
Raw Normal View History

2019-01-01 16:28:47 +00:00
@model Yavsc.Models.Musical.Profiles.GeneralSettings
@{
2019-06-23 00:05:23 +01:00
ViewData["Title"] = @SR["Delete"];
2019-01-01 16:28:47 +00:00
}
2019-06-23 00:05:23 +01:00
<h2>@SR["Delete"]</h2>
2019-01-01 16:28:47 +00:00
2019-06-23 00:05:23 +01:00
<h3>@SR["AreYourSureYouWantToDeleteThis"]</h3>
2019-01-01 16:28:47 +00:00
<div>
<h4>GeneralSettings</h4>
<hr />
<dl class="dl-horizontal">
</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-01-01 16:28:47 +00:00
</div>
</form>
</div>