Files

30 lines
1.2 KiB
PHP
Raw Permalink Normal View History

@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>
</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>
</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>
</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>
</li>
</ul>
@endsection
2020-03-22 13:29:31 -05:00
@section('content_footer')
</div>
</div>
</div>
@endsection