mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
add users page, full screen image preview, footer
Some checks are pending
Docker / build (push) Waiting to run
Some checks are pending
Docker / build (push) Waiting to run
This commit is contained in:
parent
7ec9c4bc9d
commit
1442dbfa60
20 changed files with 202 additions and 32 deletions
|
|
@ -1,16 +1,18 @@
|
|||
<div class="wa-flank wa-align-items-center">
|
||||
<livewire:app.pfp :user="$comment->user" />
|
||||
<div class="wa-split">
|
||||
<div class="wa-stack wa-gap-3xs">
|
||||
<div class="wa-cluster wa-align-items-center">
|
||||
<strong>{{ $comment->user->name }}</strong>
|
||||
<span class="wa-caption-m" wire:poll.visible>{{ $comment->created_at->diffForHumans() }}</span>
|
||||
<wa-card>
|
||||
<div class="wa-flank wa-align-items-start">
|
||||
<livewire:app.pfp :user="$comment->user" />
|
||||
<div class="wa-split">
|
||||
<div class="wa-stack wa-gap-3xs">
|
||||
<div class="wa-cluster wa-align-items-center">
|
||||
<strong>{{ $comment->user->name }}</strong>
|
||||
<span class="wa-caption-m" wire:poll.visible>{{ $comment->created_at->diffForHumans() }}</span>
|
||||
</div>
|
||||
<span>{{ $comment->message }}</span>
|
||||
</div>
|
||||
<span>{{ $comment->message }}</span>
|
||||
</div>
|
||||
|
||||
@if (Auth::id() == $comment->user->id)
|
||||
<wa-icon-button href="{{ url("/delete/comment/$comment->id") }}" name="times" label="Delete"></wa-icon-button>
|
||||
@endif
|
||||
@if (Auth::id() == $comment->user->id)
|
||||
<wa-icon-button href="{{ url("/delete/comment/$comment->id") }}" name="times" label="Delete"></wa-icon-button>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</wa-card>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue