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