mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* working popover * popup component * cleanup * finalize device-link component * attributes WIP * working graph component * widgets WIP * More dynamic configs * Graph row component * Build CSS so we can use a dark theme * graph row set columns * only one popup visible at a time. * Just set graph row width statically * responsive WIP * rsponsive option for graph-row "working" * remove @deviceLink and @portLink * fix non-responsive graph row * update js/css * fix style * bad type? * types * types * types #3 * remove testing code * full rebel, no closing tags for meta and link * match previous formatting * fix vlans display * restore newline * remove silly comment * remove unused line * style I guess
30 lines
827 B
PHP
30 lines
827 B
PHP
@extends('poller.index')
|
|
|
|
@section('title', __('Poller Settings'))
|
|
|
|
@section('content')
|
|
@parent
|
|
<div id="app">
|
|
<poller-settings
|
|
:pollers='@json($poller_cluster, JSON_FORCE_OBJECT)'
|
|
:settings='@json($settings, JSON_FORCE_OBJECT)'
|
|
></poller-settings>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('styles')
|
|
<link href="{{ asset(mix('/css/vendor.css')) }}" rel="stylesheet">
|
|
@endpush
|
|
|
|
@section('javascript')
|
|
<script src="{{ asset(mix('/js/lang/en.js')) }}"></script>
|
|
<script src="{{ asset(mix('/js/lang/' . app()->getLocale() . '.js')) }}"></script>
|
|
<script src="{{ asset(mix('/js/manifest.js')) }}"></script>
|
|
<script src="{{ asset(mix('/js/vendor.js')) }}"></script>
|
|
@routes
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
<script src="{{ asset(mix('/js/app.js')) }}"></script>
|
|
@endpush
|