From c54a33c159d6a6dd6328f76e530ebdae3f3fcd1f Mon Sep 17 00:00:00 2001 From: Florian Edlmayer Date: Thu, 19 Feb 2026 14:59:14 +0100 Subject: [PATCH] Username wird jetzt auch angezeigt beim antrag --- .../ApplicationList.razor | 25 +++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/Client/Modules/SZUAbsolventenverein.Module.PremiumArea/ApplicationList.razor b/Client/Modules/SZUAbsolventenverein.Module.PremiumArea/ApplicationList.razor index f84af89..e3d4015 100644 --- a/Client/Modules/SZUAbsolventenverein.Module.PremiumArea/ApplicationList.razor +++ b/Client/Modules/SZUAbsolventenverein.Module.PremiumArea/ApplicationList.razor @@ -4,6 +4,7 @@ @inherits ModuleBase @inject IEngineerApplicationService ApplicationService @inject NavigationManager NavManager +@inject Oqtane.Services.IUserService UserService @if (Oqtane.Security.UserSecurity.IsAuthorized(PageState.User, RoleNames.Admin) || Oqtane.Security.UserSecurity.IsAuthorized(PageState.User, "Premium Member")) { @@ -28,7 +29,7 @@
@(string.IsNullOrEmpty(app.Title) ? "Ingenieur-Antrag" : app.Title)
-
Benutzer ID: @app.UserId
+
von @GetUserName(app.UserId)
@if (!string.IsNullOrEmpty(app.ShortDescription)) {

@app.ShortDescription

@@ -90,7 +91,7 @@ else