yavsc/src/Yavsc/Views/CoWorking/Details.cshtml

18 lines
304 B
Text
Raw Normal View History

2019-01-01 16:28:47 +00:00
@model CoWorking
@{
2019-06-23 00:05:23 +01:00
ViewData["Title"] = @SR["Details"];
2019-01-01 16:28:47 +00:00
}
2019-06-23 00:05:23 +01:00
<h2>@SR["Details"]</h2>
2019-01-01 16:28:47 +00:00
<div>
<h4>CoWorking</h4>
<hr />
<dl class="dl-horizontal">
</dl>
</div>
<p>
2019-06-23 00:05:23 +01:00
<a asp-action="Edit" asp-route-id="@Model.Id">@SR["Edit"]</a> |
<a asp-action="Index">@SR["Back to List"]</a>
2019-01-01 16:28:47 +00:00
</p>