Added postedAt on the single incident page (#2795)
Added a PostedAt tooltip
This commit is contained in:
@@ -33,6 +33,7 @@ return [
|
||||
'scheduled' => 'Maintenance',
|
||||
'scheduled_at' => ', scheduled :timestamp',
|
||||
'posted' => 'Posted :timestamp',
|
||||
'posted_at' => 'Posted at :timestamp',
|
||||
'status' => [
|
||||
1 => 'Investigating',
|
||||
2 => 'Identified',
|
||||
|
||||
@@ -35,7 +35,14 @@
|
||||
{!! $update->formatted_message !!}
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel-footer"><small>{{ trans('cachet.incidents.posted', ['timestamp' => $update->created_at_diff]) }}</small></div>
|
||||
<div class="panel-footer">
|
||||
<small>
|
||||
<span data-toggle="tooltip" title="
|
||||
{{ trans('cachet.incidents.posted_at', ['timestamp' => $update->created_at_formatted]) }}">
|
||||
{{ trans('cachet.incidents.posted', ['timestamp' => $update->created_at_diff]) }}
|
||||
</span>
|
||||
</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user