Skip to content

Commit

Permalink
Simplify the incidents templates
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk committed Dec 5, 2016
1 parent ef70ef0 commit 0780e40
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 37 deletions.
36 changes: 0 additions & 36 deletions resources/views/partials/incident.blade.php

This file was deleted.

34 changes: 33 additions & 1 deletion resources/views/partials/incidents.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,39 @@
</div>
</div>
<div class="col-xs-10 col-xs-offset-2 col-sm-11 col-sm-offset-0">
@include('partials.incident', ['incident' => $incident, 'with_link' => true])
<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">
<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>
</small>
</div>
<div class="panel-body markdown-body">
{!! $incident->formatted_message !!}
</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>

</div>
</div>
</div>
Expand Down

0 comments on commit 0780e40

Please sign in to comment.