diff --git a/application/controllers/Simplefle.php b/application/controllers/Simplefle.php index a9d9e6ed..5dc0eda3 100644 --- a/application/controllers/Simplefle.php +++ b/application/controllers/Simplefle.php @@ -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); } } \ No newline at end of file diff --git a/application/language/english/qso_lang.php b/application/language/english/qso_lang.php index fc4dc99f..5936d1a6 100644 --- a/application/language/english/qso_lang.php +++ b/application/language/english/qso_lang.php @@ -43,4 +43,4 @@ $lang['simplefle_info'] = "What is that?"; $lang['simplefle_info_ln1'] = "Simple Fast Log Entry (FLE)"; $lang['simplefle_info_ln2'] = "'Fast Log Entry', or simply 'FLE' is a system to log QSOs very quickly and efficiently. Due to its syntax, only a minimum of input is required to log many QSOs with as little effort as possible."; $lang['simplefle_info_ln3'] = "FLE was originally written by DF3CB. He offers a program for Windows on his website. Simple FLE was written by OK2CQR based on DF3CB's FLE and provides a web interface to log QSOs."; -$lang['simplefle_info_ln4'] = "Now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; \ No newline at end of file +$lang['simplefle_info_ln4'] = "A common use-case is if you have to import your paperlogs from a outdoor session and now SimpleFLE is also available in Cloudlog. Information about the syntax and how FLE works can be found here."; \ No newline at end of file diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index 3866e810..be31ee60 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -2405,23 +2405,6 @@ function viewEqsl(picture, callsign) { }); }); -