blocked-keywords.blade.php 941 B

12345678910111213141516171819202122
  1. @extends('settings.template')
  2. @section('section')
  3. <div class="title">
  4. <h3 class="font-weight-bold">Blocked Keywords</h3>
  5. </div>
  6. <hr>
  7. <div class="form-group pb-1">
  8. <p>
  9. <a class="btn btn-outline-secondary py-0 font-weight-bold" href="{{route('settings.privacy.muted-users')}}">Muted Users</a>
  10. <a class="btn btn-outline-secondary py-0 font-weight-bold" href="{{route('settings.privacy.blocked-users')}}">Blocked Users</a>
  11. <a class="btn btn-outline-primary py-0 font-weight-bold" href="{{route('settings.privacy.blocked-keywords')}}">Blocked keywords</a>
  12. <a class="btn btn-outline-secondary py-0 font-weight-bold" href="{{route('settings.privacy.blocked-instances')}}">Blocked instances</a>
  13. </p>
  14. </div>
  15. <div class="alert alert-warning border-0">
  16. <p class="font-weight-bold mb-0">Unavailable</p>
  17. <p class="mb-0">This setting will be released in a future version.</p>
  18. </div>
  19. @endsection