Update to User Management
Updated user management to display more of the User ; Last Login Last IP and Is Authenticated.
This commit is contained in:
@ -38,6 +38,9 @@ else
|
||||
<th style="width: 1px;"> </th>
|
||||
<th>@SharedLocalizer["Name"]</th>
|
||||
<th>@SharedLocalizer["Username"]</th>
|
||||
<th>@Localizer["LastLoginOn"]</th>
|
||||
<th>@Localizer["LastIPAddress"]</th>
|
||||
<th>@Localizer["IsAuthenticated"]</th>
|
||||
</Header>
|
||||
<Row>
|
||||
<td>
|
||||
@ -51,6 +54,10 @@ else
|
||||
</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>@context.User.LastIPAddress</td>
|
||||
<td>@context.User.IsAuthenticated</td>
|
||||
|
||||
</Row>
|
||||
</Pager>
|
||||
</TabPanel>
|
||||
|
Reference in New Issue
Block a user