mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Admin view will show some IP addresses.
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
This commit is contained in:
@@ -58,6 +58,8 @@ return [
|
||||
'is_blocked' => 'Is blocked',
|
||||
'is_admin' => 'Is admin',
|
||||
'has_two_factor' => 'Has 2FA',
|
||||
'confirmed_from' => 'Confirmed from',
|
||||
'registered_from' => 'Registered from',
|
||||
'blocked_code' => 'Block code',
|
||||
'domain' => 'Domain',
|
||||
'registration_attempts' => 'Registration attempts',
|
||||
|
@@ -17,6 +17,8 @@
|
||||
<th colspan="2"> </th>
|
||||
<th>{{ trans('list.email') }}</th>
|
||||
<th>{{ trans('list.registered_at') }}</th>
|
||||
<th>{{ trans('list.registered_from') }}</th>
|
||||
<th>{{ trans('list.confirmed_from') }}</th>
|
||||
<th>{{ trans('list.is_admin') }}</th>
|
||||
<th>{{ trans('list.has_two_factor') }}</th>
|
||||
<th>{{ trans('list.is_activated') }}</th>
|
||||
@@ -34,6 +36,12 @@
|
||||
{{ user.created_at.formatLocalized(monthAndDayFormat) }}
|
||||
{{ user.created_at.format('H:i') }}
|
||||
</td>
|
||||
<td>
|
||||
{{ Preferences.getForUser(user,"registration_ip_address").data }}
|
||||
</td>
|
||||
<td>
|
||||
{{ Preferences.getForUser(user,"confirmation_ip_address").data }}
|
||||
</td>
|
||||
<td>
|
||||
{% if user.isAdmin %}
|
||||
<small class="text-success"><i class="fa fa-fw fa-check"></i></small>
|
||||
|
Reference in New Issue
Block a user