mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update status sidebar view
This commit is contained in:
parent
3cd427a1cb
commit
109704f870
1 changed files with 30 additions and 14 deletions
|
@ -17,7 +17,23 @@
|
|||
<a class="dropdown-item font-weight-bold" href="{{$status->reportUrl()}}">Report</a>
|
||||
{{-- <a class="dropdown-item" href="#">Embed</a> --}}
|
||||
@if(Auth::check())
|
||||
@if(Auth::user()->profile->id !== $status->profile->id)
|
||||
<div class="dropdown-divider"></div>
|
||||
<form method="post" action="/i/mute">
|
||||
@csrf
|
||||
<input type="hidden" name="type" value="user">
|
||||
<input type="hidden" name="item" value="{{$status->profile_id}}">
|
||||
<button type="submit" class="dropdown-item btn btn-link font-weight-bold">Mute this user</button>
|
||||
</form>
|
||||
<form method="post" action="/i/block">
|
||||
@csrf
|
||||
<input type="hidden" name="type" value="user">
|
||||
<input type="hidden" name="item" value="{{$status->profile_id}}">
|
||||
<button type="submit" class="dropdown-item btn btn-link font-weight-bold">Block this user</button>
|
||||
</form>
|
||||
@endif
|
||||
@if(Auth::user()->profile->id === $status->profile->id || Auth::user()->is_admin == true)
|
||||
<div class="dropdown-divider"></div>
|
||||
{{-- <a class="dropdown-item" href="{{$status->editUrl()}}">Edit</a> --}}
|
||||
<form method="post" action="/i/delete">
|
||||
@csrf
|
||||
|
|
Loading…
Reference in a new issue