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

29 lines
780 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)
2016-02-17 22:11:48 +00:00
<a href="/user/{{ $activity->user->id }}">{{$activity->user->name}}</a>
@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>
2015-08-23 12:41:35 +00:00
@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>