mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-23 11:16:05 +01:00
27 lines
664 B
PHP
27 lines
664 B
PHP
@extends('layout.master')
|
|
|
|
@section('content')
|
|
<div class='alert alert-{{ $systemStatus }}'>{{ $systemMessage }}</div>
|
|
|
|
@if(Auth::check())
|
|
<div class='row'>
|
|
<div class='col-md-12'>
|
|
<a class="btn btn-primary pull-right" href="/auth/logout">{{ Lang::get('cachet.logout') }}</a>
|
|
<p>{{ Lang::get('cachet.dashboard_link') }}</p>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
@include('partials.components')
|
|
|
|
@if(Setting::get('display_graphs'))
|
|
@include('partials.graphs')
|
|
@endif
|
|
|
|
@for($i=0; $i <= 7; $i++)
|
|
@include('partials.incident', array('i', $i))
|
|
@endfor
|
|
|
|
@include('partials.support-link')
|
|
@stop
|