From 2767680bedecebd920c09fd710ded861ece90f92 Mon Sep 17 00:00:00 2001 From: Leigh Pointer Date: Thu, 5 May 2022 13:25:35 +0200 Subject: [PATCH 1/2] Added the User Email field to the List Added the formatted email address of the user to the list view. --- Oqtane.Client/Modules/Admin/Users/Index.razor | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Oqtane.Client/Modules/Admin/Users/Index.razor b/Oqtane.Client/Modules/Admin/Users/Index.razor index c39888b1..11726982 100644 --- a/Oqtane.Client/Modules/Admin/Users/Index.razor +++ b/Oqtane.Client/Modules/Admin/Users/Index.razor @@ -38,6 +38,7 @@ else   @SharedLocalizer["Name"] @SharedLocalizer["Username"] + @SharedLocalizer["Email"] @Localizer["LastLoginOn"] @Localizer["LastIPAddress"] @Localizer["CreatedOn"] @@ -54,6 +55,7 @@ else @context.User.DisplayName @context.User.Username + @((MarkupString)string.Format("{0}", @context.User.Email)) @string.Format("{0:dd-MMM-yyyy HH:mm:ss}",context.User.LastLoginOn) @context.User.LastIPAddress @string.Format("{0:dd-MMM-yyyy HH:mm:ss}",context.User.CreatedOn) From a21a53662b5fdc8278d2e1157ba1e7d8c884263c Mon Sep 17 00:00:00 2001 From: Leigh Pointer Date: Thu, 5 May 2022 16:35:43 +0200 Subject: [PATCH 2/2] Update for real-estate Removed Name Removed Seconds from DateTime fields Added Name to the Email link --- Oqtane.Client/Modules/Admin/Users/Index.razor | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Oqtane.Client/Modules/Admin/Users/Index.razor b/Oqtane.Client/Modules/Admin/Users/Index.razor index 11726982..094b8866 100644 --- a/Oqtane.Client/Modules/Admin/Users/Index.razor +++ b/Oqtane.Client/Modules/Admin/Users/Index.razor @@ -36,7 +36,6 @@ else       - @SharedLocalizer["Name"] @SharedLocalizer["Username"] @SharedLocalizer["Email"] @Localizer["LastLoginOn"] @@ -53,12 +52,11 @@ else - @context.User.DisplayName @context.User.Username - @((MarkupString)string.Format("{0}", @context.User.Email)) - @string.Format("{0:dd-MMM-yyyy HH:mm:ss}",context.User.LastLoginOn) + @((MarkupString)string.Format("{1}", @context.User.DisplayName, @context.User.Email)) + @string.Format("{0:dd-MMM-yyyy HH:mm}",context.User.LastLoginOn) @context.User.LastIPAddress - @string.Format("{0:dd-MMM-yyyy HH:mm:ss}",context.User.CreatedOn) + @string.Format("{0:dd-MMM-yyyy HH:mm}",context.User.CreatedOn)