Merge pull request #2178 from leigh-pointer/UserEmail
Added the User Email field to the List
This commit is contained in:
commit
c15f2b9a12
|
@ -36,8 +36,8 @@ else
|
|||
<th style="width: 1px;"> </th>
|
||||
<th style="width: 1px;"> </th>
|
||||
<th style="width: 1px;"> </th>
|
||||
<th>@SharedLocalizer["Name"]</th>
|
||||
<th>@SharedLocalizer["Username"]</th>
|
||||
<th>@SharedLocalizer["Email"]</th>
|
||||
<th>@Localizer["LastLoginOn"]</th>
|
||||
<th>@Localizer["LastIPAddress"]</th>
|
||||
<th>@Localizer["CreatedOn"]</th>
|
||||
|
@ -52,11 +52,11 @@ else
|
|||
<td>
|
||||
<ActionLink Action="Roles" Parameters="@($"id=" + context.UserId.ToString())" ResourceKey="Roles" />
|
||||
</td>
|
||||
<td>@context.User.DisplayName</td>
|
||||
<td>@context.User.Username</td>
|
||||
<td>@string.Format("{0:dd-MMM-yyyy HH:mm:ss}",context.User.LastLoginOn)</td>
|
||||
<td>@((MarkupString)string.Format("<a href=\"mailto:{0}\">{1}</a>", @context.User.DisplayName, @context.User.Email))</td>
|
||||
<td>@string.Format("{0:dd-MMM-yyyy HH:mm}",context.User.LastLoginOn)</td>
|
||||
<td>@context.User.LastIPAddress</td>
|
||||
<td>@string.Format("{0:dd-MMM-yyyy HH:mm:ss}",context.User.CreatedOn)</td>
|
||||
<td>@string.Format("{0:dd-MMM-yyyy HH:mm}",context.User.CreatedOn)</td>
|
||||
|
||||
</Row>
|
||||
</Pager>
|
||||
|
|
Loading…
Reference in New Issue
Block a user