mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Install bouncer * Seeder and level migration * Display and edit roles * remove unused deluser page * Update Radius and SSO to assign roles * update AlertUtil direct level check to use roles instead * rewrite ircbot auth handling * Remove legacy auth getUserlist and getUserlevel methods, add getRoles Set roles in LegacyUserProvider * Small cleanups * centralize role sync code show roles on user preferences page * VueSelect component WIP and a little docs * WIP * SelectControllers id and text fields. * LibrenmsSelect component extracted from SettingSelectDynamic * Handle multiple selections * allow type coercion * full width settings * final style adjustments * Final compiled assets update * Style fixes * Fix SSO tests * Lint cleanups * small style fix * don't use json yet * Update baseline for usptream package issues * Change schema, not 100% sure it is correct not sure why xor doesn't work
31 lines
914 B
PHP
31 lines
914 B
PHP
@extends('layouts.librenmsv1')
|
|
|
|
@section('title', __('settings.title'))
|
|
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
<div id="app">
|
|
<librenms-settings
|
|
prefix="{{ url('settings') }}"
|
|
initial-tab="{{ $active_tab }}"
|
|
initial-section="{{ $active_section }}"
|
|
:tabs="{{ $groups }}"
|
|
></librenms-settings>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('styles')
|
|
<link href="{{ asset(mix('/css/vendor.css')) }}" rel="stylesheet">
|
|
@endpush
|
|
|
|
@push('scripts')
|
|
@routes
|
|
<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>
|
|
<script src="{{ asset(mix('/js/app.js')) }}"></script>
|
|
@endpush
|
|
|