yavsc/Yavsc/Views/Client/Details.cshtml

66 lines
1.7 KiB
Text
Raw Normal View History

2017-02-03 15:07:11 +01:00
@model Client
2016-05-17 18:22:18 +02:00
@{
ViewData["Title"] = "Details";
}
<h2>Details</h2>
<div>
2016-06-12 01:32:51 +02:00
<h4>Client</h4>
2016-05-17 18:22:18 +02:00
<hr />
<dl class="dl-horizontal">
2016-06-12 01:32:51 +02:00
<dt>
@Html.DisplayNameFor(model => model.Id)
</dt>
<dd>
@Html.DisplayFor(model => model.Id)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Active)
</dt>
<dd>
@Html.DisplayFor(model => model.Active)
</dd>
2016-05-17 18:22:18 +02:00
<dt>
@Html.DisplayNameFor(model => model.DisplayName)
</dt>
<dd>
@Html.DisplayFor(model => model.DisplayName)
</dd>
<dt>
@Html.DisplayNameFor(model => model.LogoutRedirectUri)
</dt>
<dd>
@Html.DisplayFor(model => model.LogoutRedirectUri)
</dd>
<dt>
@Html.DisplayNameFor(model => model.RedirectUri)
</dt>
<dd>
@Html.DisplayFor(model => model.RedirectUri)
</dd>
2016-05-26 14:52:11 +02:00
<dt>
2016-06-12 01:32:51 +02:00
@Html.DisplayNameFor(model => model.RefreshTokenLifeTime)
2016-05-26 14:52:11 +02:00
</dt>
<dd>
2016-06-12 01:32:51 +02:00
@Html.DisplayFor(model => model.RefreshTokenLifeTime)
2016-05-26 14:52:11 +02:00
</dd>
2016-05-17 18:22:18 +02:00
<dt>
@Html.DisplayNameFor(model => model.Secret)
</dt>
<dd>
@Html.DisplayFor(model => model.Secret)
</dd>
2016-06-12 01:32:51 +02:00
<dt>
@Html.DisplayNameFor(model => model.Type)
</dt>
<dd>
@Html.DisplayFor(model => model.Type)
</dd>
2016-05-17 18:22:18 +02:00
</dl>
</div>
<p>
2016-06-12 01:32:51 +02:00
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
2016-05-17 18:22:18 +02:00
<a asp-action="Index">Back to List</a>
</p>