diff --git a/resources/views/admin/users/show.blade.php b/resources/views/admin/users/show.blade.php index 7652db6ea..1a482467e 100644 --- a/resources/views/admin/users/show.blade.php +++ b/resources/views/admin/users/show.blade.php @@ -58,42 +58,82 @@ ADMIN

@endif -

- Joined {{$profile->created_at->diffForHumans()}} -

+ +
+
+

+ {{$profile->created_at->diffForHumans()}} +

+

+ Joined +

+
+ @if($user->last_active_at) +
+

+ {{$user->last_active_at->diffForHumans()}} +

+

+ Last Active +

+
+ @endif +
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
bookmarks{{$profile->bookmarks()->count()}}
collections{{$profile->collections()->count()}}
likes{{$profile->likes()->count()}}
reports{{$profile->reports()->count()}}
reported{{$profile->reported()->count()}}
Active stories{{$profile->stories()->count()}}
storage used{{PrettyNumber::size($profile->media()->sum('size'))}} / {{PrettyNumber::size(config_cache('pixelfed.max_account_size') * 1000)}}
+ +
+
+

email

+

{{$user->email}}

+
+ + @if($profile->website) +
+

website

+

{{$profile->website}}

+
+ @endif + +
+

bookmarks

+

{{$profile->bookmarks()->count()}}

+
+ +
+

collections

+

{{$profile->collections()->count()}}

+
+ +
+

likes

+

{{$profile->likes()->count()}}

+
+ +
+

reports

+

{{$profile->reports()->count()}}

+
+ +
+

reported

+

{{$profile->reported()->count()}}

+
+ +
+

active stories

+

{{$profile->stories()->count()}}

+
+ +
+

storage used

+

{{PrettyNumber::size($profile->media()->sum('size'))}} / {{PrettyNumber::size(config_cache('pixelfed.max_account_size') * 1000)}}

+
+ +
+

bio

+

{{ $profile->bio }}

+
+
@@ -119,3 +159,44 @@
@endsection + +@push('styles') + +@endpush