yavsc/Yavsc/Views/GCMDevices/Details.cshtml

49 lines
1.2 KiB
Plaintext

@model Yavsc.Models.Identity.GoogleCloudMobileDeclaration
@{
ViewData["Title"] = "Details";
}
<h2>Details</h2>
<div>
<h4>GoogleCloudMobileDeclaration</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.DeclarationDate)
</dt>
<dd>
@Html.DisplayFor(model => model.DeclarationDate)
</dd>
<dt>
@Html.DisplayNameFor(model => model.GCMRegistrationId)
</dt>
<dd>
@Html.DisplayFor(model => model.GCMRegistrationId)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Model)
</dt>
<dd>
@Html.DisplayFor(model => model.Model)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Platform)
</dt>
<dd>
@Html.DisplayFor(model => model.Platform)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Version)
</dt>
<dd>
@Html.DisplayFor(model => model.Version)
</dd>
</dl>
</div>
<p>
<a asp-action="Edit" asp-route-id="@Model.DeviceId">Edit</a> |
<a asp-action="Index">Back to List</a>
</p>