mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-02-25 03:10:24 +03:00
Reverted change for activities table so that a record is retained of past activity, and added a check where the ID may be displayed to ensure it does not mislead and accidentially reference other, newer users.
7 lines
314 B
PHP
7 lines
314 B
PHP
{{--
|
|
$user - User to display.
|
|
--}}
|
|
<a href="{{ $user->getEditUrl() }}" class="flex-container-row inline gap-s items-center">
|
|
<div class="flex-none"><img width="40" height="40" class="avatar block" src="{{ $user->getAvatar(40)}}" alt="{{ $user->name }}"></div>
|
|
<div class="flex">{{ $user->name }}</div>
|
|
</a> |