BookStack/resources/views/partials/activity-item.blade.php

29 lines
740 B
PHP
Raw Normal View History

{{--Requires an Activity item with the name $activity passed in--}}
2015-08-23 12:41:35 +00:00
@if($activity->user)
<div class="left">
<img class="avatar" src="{{ $activity->user->getAvatar(30) }}" alt="{{$activity->user->name}}">
</div>
@endif
<div class="right" ng-non-bindable>
2015-08-23 12:41:35 +00:00
@if($activity->user)
{{$activity->user->name}}
@else
A deleted user
2015-08-23 12:41:35 +00:00
@endif
2015-08-23 12:41:35 +00:00
{{ $activity->getText() }}
@if($activity->entity())
<a href="{{ $activity->entity()->getUrl() }}">{{ $activity->entity()->name }}</a>
@endif
2015-08-23 12:41:35 +00:00
@if($activity->extra) "{{$activity->extra}}" @endif
2015-08-23 12:41:35 +00:00
<br>
2015-08-23 12:41:35 +00:00
<span class="text-muted"><small><i class="zmdi zmdi-time"></i>{{ $activity->created_at->diffForHumans() }}</small></span>
</div>