グラフページを対象期間ごとに掘り下げる形に変更

This commit is contained in:
shibafu
2020-05-24 17:27:42 +09:00
parent 00f75f33cc
commit 019412c72a
9 changed files with 302 additions and 131 deletions

View File

@@ -0,0 +1,14 @@
<div class="d-flex flex-row align-items-end">
<img src="{{ $user->getProfileImageUrl(48) }}" srcset="{{ Formatter::profileImageSrcSet($user, 48) }}" class="rounded mr-2">
<div class="d-flex flex-column overflow-hidden">
<h5 class="card-title text-truncate">
<a class="text-dark" href="{{ route('user.profile', ['name' => $user->name]) }}">{{ $user->display_name }}</a>
</h5>
<h6 class="card-subtitle">
<a class="text-muted" href="{{ route('user.profile', ['name' => $user->name]) }}">&commat;{{ $user->name }}</a>
@if ($user->is_protected)
<span class="oi oi-lock-locked text-muted"></span>
@endif
</h6>
</div>
</div>