mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Fixes #1550
This commit is contained in:
parent
536e41507a
commit
afddd0bcb3
1 changed files with 11 additions and 0 deletions
|
@ -8,6 +8,17 @@
|
|||
<div class="text-center">
|
||||
<h1>Collection</h1>
|
||||
<h4 class="text-muted">{{$collection->title}}</h4>
|
||||
@auth
|
||||
@if($collection->profile_id == Auth::user()->profile_id)
|
||||
<div class="text-right">
|
||||
<form method="post" action="/api/local/collection/{{$collection->id}}">
|
||||
@csrf
|
||||
<input type="hidden" name="_method" value="DELETE">
|
||||
<button type="submit" class="btn btn-outline-danger font-weight-bold btn-sm py-1">Delete</button>
|
||||
</form>
|
||||
</div>
|
||||
@endif
|
||||
@endauth
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
|
|
Loading…
Reference in a new issue