A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.0KB

  1. @extends('default')
  2. @section('title', $user->username . ' Bans')
  3. @section('breadcrumb')
  4. <a href="{{ route('index') }}">Home</a>
  5. <a>></a>
  6. <a href="{{ route('users') }}">Users</a>
  7. <a>></a>
  8. <a href="{{ route('user', ['user' => $user->id]) }}">{{ $user->username }}</a>
  9. <a>></a>
  10. <a href="{{ route('user.bans', ['user' => $user->id]) }}">Bans</a>
  11. @endsection
  12. @section('content')
  13. @foreach($bans as $ban)
  14. <div class="row">
  15. <b>{{ $ban->user->username }}</b> was banned by <b>{{ $ban->creator->username }}</b> at <b>{{ $ban->createdAt }}</b> until <b>{{ $ban->endsAt }}</b>
  16. <br/>Reason: "{{ $ban->reason }}"
  17. </div>
  18. <div class="row post">
  19. <div class="inner">
  20. <div class="postContent">
  21. {!! $ban->post->render() !!}
  22. </div>
  23. </div>
  24. </div>
  25. <div class="row spacer"></div>
  26. @endforeach
  27. @endsection
  28. @section('scripts')
  29. <link rel='stylesheet' type='text/css' href='/css/page/thread.css'/>
  30. @endsection