working on simplefle

This commit is contained in:
HB9HIL
2023-10-25 10:02:06 +02:00
parent 0364df723a
commit a63244a78a
5 changed files with 685 additions and 21 deletions

View File

@@ -7,11 +7,18 @@ class SimpleFLE extends CI_Controller {
if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
$data['page_title'] = "Simple Fast Log Entry";
$footerData = [];
$footerData['scripts'] = [
'assets/js/moment.min.js',
'assets/js/tempusdominus-bootstrap-4.min.js',
'assets/js/datetime-moment.js',
'assets/js/sections/simplefle.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/simplefle.js"))
];
$this->load->view('interface_assets/header', $data);
$this->load->view('simplefle/index');
$this->load->view('interface_assets/footer');
$this->load->view('interface_assets/footer', $footerData);
}
}