mirror of https://github.com/pixelfed/pixelfed
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHTML
		
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHTML
		
	
@extends('admin.partial.template')
 | 
						|
 | 
						|
@section('section')
 | 
						|
  <div class="title">
 | 
						|
    <h3 class="font-weight-bold">Statuses</h3>
 | 
						|
  </div>
 | 
						|
 | 
						|
  <hr>
 | 
						|
 | 
						|
  <table class="table">
 | 
						|
    <thead class="thead-dark">
 | 
						|
      <tr>
 | 
						|
        <th scope="col">#</th>
 | 
						|
        <th scope="col">Username</th>
 | 
						|
        <th scope="col">Likes</th>
 | 
						|
        <th scope="col">Storage</th>
 | 
						|
        <th scope="col">Created</th>
 | 
						|
      </tr>
 | 
						|
    </thead>
 | 
						|
    <tbody>
 | 
						|
      @foreach($statuses as $status)
 | 
						|
      <tr>
 | 
						|
        <th scope="row">
 | 
						|
          <a href="/statuses/show/{{$status->id}}">
 | 
						|
            {{$status->id}}
 | 
						|
          </a>
 | 
						|
        </th>
 | 
						|
        <td class="font-weight-bold">{{$status->profile->username}}</td>
 | 
						|
        <td class="font-weight-bold">{{$status->likes()->count()}}</td>
 | 
						|
        @if(!$status->media_path)
 | 
						|
        <td class="font-weight-bold">0</td>
 | 
						|
        @else
 | 
						|
        <td><div class="human-size" data-bytes="{{$status->firstMedia()->size}}">{{$status->firstMedia()->size}}</div></td>
 | 
						|
        @endif
 | 
						|
        <td class="font-weight-bold">{{$status->created_at->diffForHumans(null, true, true, true)}}</td>
 | 
						|
      </tr>
 | 
						|
      @endforeach
 | 
						|
    </tbody>
 | 
						|
  </table>
 | 
						|
  <div class="d-flex justify-content-center mt-5 small">
 | 
						|
    {{$statuses->links()}}
 | 
						|
  </div>
 | 
						|
@endsection
 | 
						|
 | 
						|
@push('scripts')
 | 
						|
  <script type="text/javascript">
 | 
						|
    $(document).ready(function() {
 | 
						|
      $('.human-size').each(function(d,a) {
 | 
						|
        let el = $(a);
 | 
						|
        let size = el.data('bytes');
 | 
						|
        el.text(filesize(size, {round: 0}));
 | 
						|
      });
 | 
						|
    });
 | 
						|
  </script>
 | 
						|
@endpush |