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>
|
@model IEnumerable<Yavsc.Models.YavscApiScope>
|
||||||
|
|
||||||
@{
|
@{
|
||||||
|
ViewBag.Title = Localizer["ApiScope"];
|
||||||
Layout = null;
|
Layout = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,10 @@
|
||||||
@using IdentityServer8.Models;
|
@using IdentityServer8.Models;
|
||||||
@model IEnumerable<IdentityServer8.EntityFramework.Entities.Client>
|
@model IEnumerable<IdentityServer8.EntityFramework.Entities.Client>
|
||||||
|
|
||||||
|
@{
|
||||||
|
ViewBag.Title = Localizer["Client"];
|
||||||
|
}
|
||||||
|
|
||||||
<h2>@Localizer["Index"]</h2>
|
<h2>@Localizer["Index"]</h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,9 @@
|
||||||
@model DiagnosticsViewModel
|
@model DiagnosticsViewModel
|
||||||
|
|
||||||
|
@{
|
||||||
|
ViewBag.Title = Localizer["Diagnostics"];
|
||||||
|
}
|
||||||
|
|
||||||
<div class="diagnostics-page">
|
<div class="diagnostics-page">
|
||||||
<div class="lead">
|
<div class="lead">
|
||||||
<h1>Authentication Cookie</h1>
|
<h1>Authentication Cookie</h1>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,9 @@
|
||||||
@model GrantsViewModel
|
@model GrantsViewModel
|
||||||
|
|
||||||
|
@{
|
||||||
|
ViewBag.Title = Localizer["Grants"];
|
||||||
|
}
|
||||||
|
|
||||||
<div class="grants-page">
|
<div class="grants-page">
|
||||||
<div class="lead">
|
<div class="lead">
|
||||||
<h1>Client Application Permissions</h1>
|
<h1>Client Application Permissions</h1>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,9 @@
|
||||||
@model IEnumerable<Yavsc.Models.Billing.ExceptionSIREN>
|
@model IEnumerable<Yavsc.Models.Billing.ExceptionSIREN>
|
||||||
|
|
||||||
|
@{
|
||||||
|
ViewBag.Title = Localizer["SIRENExceptions"];
|
||||||
|
}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<a asp-action="Create">Create New</a>
|
<a asp-action="Create">Create New</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue