From a21a53662b5fdc8278d2e1157ba1e7d8c884263c Mon Sep 17 00:00:00 2001 From: Leigh Pointer Date: Thu, 5 May 2022 16:35:43 +0200 Subject: [PATCH] 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)