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> @model IEnumerable<Yavsc.Models.YavscApiScope>
@{ @{
ViewBag.Title = Localizer["ApiScope"];
Layout = null; Layout = null;
} }

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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>