mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Poller settings WIP * Poller settings WIP2 * working on SettingMultiple * setting multiple working * settings sent with all required info * fix translation * Fix keys * fix groups setting * Apply settings to service fixes and validations for setting * don't error when no poller_cluster entry exists * hid tab when no poller cluster entries * Authorization * make prod * daily maintenance toggle should be advanced * Update schema def
30 lines
824 B
PHP
30 lines
824 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/app.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
|