gives titles
This commit is contained in:
parent
34b4203cd1
commit
c8894c4220
5 changed files with 27 additions and 10 deletions
|
|
@ -1,6 +1,7 @@
|
|||
@model IEnumerable<Yavsc.Models.YavscApiScope>
|
||||
|
||||
@{
|
||||
ViewBag.Title = Localizer["ApiScope"];
|
||||
Layout = null;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,10 @@
|
|||
@using IdentityServer8.Models;
|
||||
@model IEnumerable<IdentityServer8.EntityFramework.Entities.Client>
|
||||
|
||||
@{
|
||||
ViewBag.Title = Localizer["Client"];
|
||||
}
|
||||
|
||||
<h2>@Localizer["Index"]</h2>
|
||||
|
||||
<p>
|
||||
|
|
@ -10,7 +14,7 @@
|
|||
@foreach (var item in Model)
|
||||
{
|
||||
<div class="list-item">
|
||||
|
||||
|
||||
<div class="card">
|
||||
<h5 class="card-title">Identifier</h5>
|
||||
<h6 class="card-subtitle mb-2 text-muted">and activation</h6>
|
||||
|
|
@ -36,7 +40,7 @@
|
|||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="card">
|
||||
|
||||
<h5 class="card-title">Urls</h5>
|
||||
|
|
@ -56,7 +60,7 @@
|
|||
</dd>
|
||||
<dt>@Html.DisplayNameFor(model => model.AbsoluteRefreshTokenLifetime)</dt>
|
||||
<dd>@Html.DisplayFor(model => item.AbsoluteRefreshTokenLifetime)</dd>
|
||||
|
||||
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
|
|
@ -78,7 +82,7 @@
|
|||
</dt>
|
||||
<dd>
|
||||
@Enum.GetName(typeof(AccessTokenType), item.AccessTokenType)
|
||||
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
|
|
@ -86,6 +90,6 @@
|
|||
<a class="btn btn-primary btn-lg" asp-action="Edit" asp-route-id="@item.Id">Edit</a>
|
||||
<a class="btn btn-secondary btn-lg" asp-action="Details" asp-route-id="@item.Id">Details</a>
|
||||
<a class="btn btn-danger btn-lg" asp-action="Delete" asp-route-id="@item.Id">Delete</a>
|
||||
|
||||
|
||||
</div>
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
@model DiagnosticsViewModel
|
||||
|
||||
@{
|
||||
ViewBag.Title = Localizer["Diagnostics"];
|
||||
}
|
||||
|
||||
<div class="diagnostics-page">
|
||||
<div class="lead">
|
||||
<h1>Authentication Cookie</h1>
|
||||
|
|
@ -22,7 +26,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
@model GrantsViewModel
|
||||
|
||||
@{
|
||||
ViewBag.Title = Localizer["Grants"];
|
||||
}
|
||||
|
||||
<div class="grants-page">
|
||||
<div class="lead">
|
||||
<h1>Client Application Permissions</h1>
|
||||
|
|
@ -39,13 +43,13 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<ul class="list-group list-group-flush">
|
||||
@if (grant.Description != null)
|
||||
{
|
||||
<li class="list-group-item">
|
||||
<label>Description:</label> @grant.Description
|
||||
</li>
|
||||
</li>
|
||||
}
|
||||
<li class="list-group-item">
|
||||
<label>Created:</label> @grant.Created.ToString("yyyy-MM-dd")
|
||||
|
|
@ -84,4 +88,4 @@
|
|||
</div>
|
||||
}
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
@model IEnumerable<Yavsc.Models.Billing.ExceptionSIREN>
|
||||
|
||||
@{
|
||||
ViewBag.Title = Localizer["SIRENExceptions"];
|
||||
}
|
||||
|
||||
<p>
|
||||
<a asp-action="Create">Create New</a>
|
||||
</p>
|
||||
|
|
@ -7,7 +11,7 @@
|
|||
<tr>
|
||||
<th>Exceptions à la validation des codes SIREN</th>
|
||||
</tr>
|
||||
|
||||
|
||||
@foreach (var item in Model) {
|
||||
<tr>
|
||||
<td>@item.SIREN</td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue