mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-18 05:58:18 +01:00
37 lines
2.0 KiB
PHP
37 lines
2.0 KiB
PHP
<div class="panel panel-message incident">
|
|
<div class="panel-heading">
|
|
@if($current_user)
|
|
<div class="pull-right btn-group">
|
|
<a href="{{ cachet_route('dashboard.incidents.edit', ['id' => $incident->id]) }}" class="btn btn-default">{{ trans('forms.edit') }}</a>
|
|
<a href="{{ cachet_route('dashboard.incidents.delete', ['id' => $incident->id], 'delete') }}" class="btn btn-danger confirm-action" data-method='DELETE'>{{ trans('forms.delete') }}</a>
|
|
</div>
|
|
@endif
|
|
@if($incident->component)
|
|
<span class="label label-default">{{ $incident->component->name }}</span>
|
|
@endif
|
|
<strong>{{ $incident->name }}</strong>{{ $incident->isScheduled ? trans("cachet.incidents.scheduled_at", ["timestamp" => $incident->scheduled_at_diff]) : null }}
|
|
<br>
|
|
<small class="date">
|
|
@if($with_link)
|
|
<a href="{{ cachet_route('incident', ['id' => $incident->id]) }}" class="links"><abbr class="timeago" data-toggle="tooltip" data-placement="right" title="{{ $incident->timestamp_formatted }}" data-timeago="{{ $incident->timestamp_iso }}"></abbr></a>
|
|
@else
|
|
<abbr class="timeago" data-toggle="tooltip" data-placement="right" title="{{ $incident->timestamp_formatted }}" data-timeago="{{ $incident->timestamp_iso }}"></abbr>
|
|
@endif
|
|
</small>
|
|
</div>
|
|
<div class="panel-body markdown-body">
|
|
{!! $incident->formattedMessage !!}
|
|
</div>
|
|
@if($incident->updates->count())
|
|
<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>
|
|
<span class="ion-ios-arrow-right pull-right"></span>
|
|
</a>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
</div>
|