2020-03-13 20:58:37 +01:00
|
|
|
@extends('layouts.librenmsv1')
|
|
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-12">
|
|
|
|
|
<ul class="nav nav-tabs">
|
2020-03-22 13:29:31 -05:00
|
|
|
<li role="presentation" @if( $current_tab == 'poller' ) class="active" @endif>
|
|
|
|
|
<a href="{{ route('poller') }}"><i class="fa fa-th-large fa-lg icon-theme" aria-hidden="true"></i> @lang('Poller')</a>
|
2020-03-13 20:58:37 +01:00
|
|
|
</li>
|
2020-03-22 13:29:31 -05:00
|
|
|
@config('distributed_poller')
|
|
|
|
|
<li role="presentation" @if( $current_tab == 'groups' ) class="active" @endif>
|
|
|
|
|
<a href="{{ route('poller.groups') }}"><i class="fa fa-th fa-lg icon-theme" aria-hidden="true"></i> @lang('Groups')</a>
|
2020-03-13 20:58:37 +01:00
|
|
|
</li>
|
2020-03-22 13:29:31 -05:00
|
|
|
@endconfig
|
|
|
|
|
<li role="presentation" @if( $current_tab == 'performance' ) class="active" @endif>
|
|
|
|
|
<a href="{{ route('poller.performance') }}"><i class="fa fa-line-chart fa-lg icon-theme" aria-hidden="true"></i> @lang('Performance')</a>
|
2020-03-13 20:58:37 +01:00
|
|
|
</li>
|
2020-03-22 13:29:31 -05:00
|
|
|
<li role="presentation" @if( $current_tab == 'log' ) class="active" @endif>
|
|
|
|
|
<a href="{{ route('poller.log') }}"><i class="fa fa-file-text fa-lg icon-theme" aria-hidden="true"></i> @lang('Log')</a>
|
2020-03-13 20:58:37 +01:00
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
@endsection
|
2020-03-22 13:29:31 -05:00
|
|
|
|
2020-03-13 20:58:37 +01:00
|
|
|
@section('content_footer')
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
@endsection
|