gives titles

This commit is contained in:
Paul Schneider 2026-07-04 19:57:03 +01:00
commit c8894c4220
5 changed files with 27 additions and 10 deletions

View file

@ -1,6 +1,7 @@
@model IEnumerable<Yavsc.Models.YavscApiScope>
@{
ViewBag.Title = Localizer["ApiScope"];
Layout = null;
}

View file

@ -1,6 +1,10 @@
@using IdentityServer8.Models;
@model IEnumerable<IdentityServer8.EntityFramework.Entities.Client>
@{
ViewBag.Title = Localizer["Client"];
}
<h2>@Localizer["Index"]</h2>
<p>

View file

@ -1,5 +1,9 @@
@model DiagnosticsViewModel
@{
ViewBag.Title = Localizer["Diagnostics"];
}
<div class="diagnostics-page">
<div class="lead">
<h1>Authentication Cookie</h1>

View file

@ -1,5 +1,9 @@
@model GrantsViewModel
@{
ViewBag.Title = Localizer["Grants"];
}
<div class="grants-page">
<div class="lead">
<h1>Client Application Permissions</h1>

View file

@ -1,5 +1,9 @@
@model IEnumerable<Yavsc.Models.Billing.ExceptionSIREN>
@{
ViewBag.Title = Localizer["SIRENExceptions"];
}
<p>
<a asp-action="Create">Create New</a>
</p>