Shows the incident's updates.

The incident's updates are no longer summurized with "..." and bold,
they are fully displayed in order to be able to read all the incident
life on the status page.
This commit is contained in:
A
2018-01-10 15:01:58 +01:00
parent 1fec3e06f7
commit 66ec744c21

View File

@@ -34,9 +34,17 @@
<div class="list-group">
@foreach($incident->updates as $update)
<a class="list-group-item" href="{{ $update->permalink }}">
<i class="{{ $update->icon }}" title="{{ $update->human_status }}" data-toggle="tooltip"></i> <strong>{{ Str::limit($update->raw_message, 20) }}</strong>
<small>{{ $update->created_at_diff }}</small>
<p>
<i class="{{ $update->icon }}" title="{{ $update->human_status }}" data-toggle="tooltip"></i>
{{ $update->raw_message }}
<small>
<abbr class="timeago links" data-toggle="tooltip"
data-placement="right" title="{{ $update->timestamp_formatted }}"
data-timeago="{{ $update->timestamp_iso }}">
</abbr>
</small>
<span class="ion-ios-arrow-right pull-right"></span>
</p>
</a>
@endforeach
</div>