Cachet/app/views/index.blade.php

27 lines
664 B
PHP
Raw Normal View History

2014-11-16 23:17:34 +00:00
@extends('layout.master')
@section('content')
2014-12-01 08:42:11 +00:00
<div class='alert alert-{{ $systemStatus }}'>{{ $systemMessage }}</div>
2014-11-19 16:26:42 +00:00
2014-12-01 08:42:11 +00:00
@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>
2014-12-01 08:42:11 +00:00
@endif
2014-11-24 15:54:56 +00:00
2014-12-01 14:40:25 +00:00
@include('partials.components')
2014-12-01 08:42:11 +00:00
@if(Setting::get('display_graphs'))
2014-12-01 14:40:25 +00:00
@include('partials.graphs')
2014-12-01 08:42:11 +00:00
@endif
2014-12-01 08:42:11 +00:00
@for($i=0; $i <= 7; $i++)
2014-12-01 14:40:25 +00:00
@include('partials.incident', array('i', $i))
2014-12-01 08:42:11 +00:00
@endfor
2014-12-01 14:40:25 +00:00
@include('partials.support-link')
2014-11-16 23:17:34 +00:00
@stop