This commit is contained in:
James Brooks
2015-03-30 21:11:52 +01:00
parent da9c32d38a
commit 5251369317
4 changed files with 7 additions and 12 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ body.status-page {
font-size: 1.2em;
}
p {
margin: 0;
margin-top: 8px;
}
}
}
+4 -9
View File
@@ -1,18 +1,13 @@
<h1>{{ trans('cachet.incidents.scheduled') }}</h1>
<div class="timeline">
<div class="timeline schedule">
@foreach($scheduledMaintenance as $schedule)
<div class="panel panel-message">
<div class="panel panel-default">
<div class="panel-heading">
<strong>{{ $schedule->name }}</strong>
<br>
<small class="date">
<abbr class="timeago" data-toggle="tooltip" data-placement="right" title="{{ $schedule->scheduled_at_formatted }}" data-timeago="{{ $schedule->scheduled_at_iso }}">
</abbr>
</small>
<strong>{{ $schedule->name }}</strong>, <small class="date"><abbr class="timeago" data-toggle="tooltip" data-placement="right" title="{{ $schedule->scheduled_at_formatted }}" data-timeago="{{ $schedule->scheduled_at_iso }}"></abbr></small>
</div>
<div class="panel-body">
<p>{{ $schedule->formattedMessage }}</p>
{!! $schedule->formattedMessage !!}
</div>
</div>
@endforeach