diff --git a/application/controllers/Simplefle.php b/application/controllers/Simplefle.php index f79d93e1..a9d9e6ed 100644 --- a/application/controllers/Simplefle.php +++ b/application/controllers/Simplefle.php @@ -6,13 +6,6 @@ class SimpleFLE extends CI_Controller { $this->load->model('user_model'); if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } - $this->load->model('modes'); - $this->load->model('logbook_model'); - $this->load->model('stations'); - $this->load->model('bands'); - - $data['station_profile'] = $this->stations->all_of_user(); // Used in the view for station location select - $data['page_title'] = "Simple Fast Log Entry"; $this->load->view('interface_assets/header', $data); diff --git a/application/language/english/qso_lang.php b/application/language/english/qso_lang.php index f761b8ce..fc4dc99f 100644 --- a/application/language/english/qso_lang.php +++ b/application/language/english/qso_lang.php @@ -36,3 +36,11 @@ $lang['qso_details'] = 'QSO Details'; $lang['fav_add'] = 'Add Band/Mode to Favs'; $lang['qso_operator_callsign'] = 'Operator Callsign'; + +// Simple FLE (FastLogEntry) + +$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 diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index be31ee60..3866e810 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -2405,6 +2405,23 @@ function viewEqsl(picture, callsign) { }); }); + +

+ + + + session->flashdata('message')) { ?> + +
+

session->flashdata('message'); ?>

+
+ + +
+
+
+ +
+ +
+ + + +
+
+ +
+
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+

Enter the data

+ +
+
+
+
+ QSO list +
+ + + + + + + + + + + + + + + + + +
DateTimeCallsignBandModeRSRROp.SOTA/WFF
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+ Status: +
+
+
+
+

+
+
+
+
+
+
+ General +
+
+
+
+
+
+ QSO +
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+
+
+ Bands +
+
+
+
+
+
+
+
+
+
+
+
+

+ Simple fast log entry written in HTML/Javascript by Petr, + OK2CQR. + Heavily inspired by FLE from Bernd, DF3CB. + Unfortunately, the FLE works only on Windows and Linux using Wine, but I needed something + working on macOS and/or + Android tablet. I didn't need all the features, just wanted to log QSO from my + WFF/SOTA/GMA activation. +

+ +

+ The SFLE (Simple fast log entry) is a tool created by GDD (Google Driven Development) using + Bootstrap 4 and jQuery (I'm a backend developer). Data is stored only in your browser. + The website does not collect any data about you. +

+ +

+ If you find any bug or have a suggestion on how to improve the website, please let me know + at petr@ok2cqr.com. + I get many emails every day, if you don't get a reply in a few days, don't hesitate to + send your email again. +

+

+ Source code is available on GitHub. +

+
+
+
+
+ Changelog: +
+
+
+
+
+

+ 2023-09-24 +

    +
  • fix: 70CM band was not recognized
  • +
+

+
+
+
+
+

+ 2023-08-05 +

    +
  • new: when you click the 'Load sample log' button, a question dialog will appear, asking if you want to replace the existing data
  • +
  • new: after attempting to download the ADIF file, if no band and/or mode is defined, a dialog window will appear displaying an error message
  • +
  • fix: getting freq from band and mode
  • +
+

+
+
+
+
+

+ 2023-04-25 +

    +
  • new: showing frequency after hovering the band column table
  • +
  • new: the website's look and feel have been significantly improved, thanks to the pull request submitted by Aleš Kounovský, who did an outstanding job
  • +
+

+
+
+
+

+ 2022-07-23 +

    +
  • new: Power and My grid fields added to + Settings values will be in the exported ADIF file if filled in.
  • +
+

+
+
+
+
+

+ 2022-02-16 +

    +
  • new: Custom report support - e.g. 5 7 + means 559 as RST sent and 579 as RST received on CW or 55/57 on SSB, click to Load sample log button to see real examples
  • +
+

+
+
+
+
+

+ 2022-02-03 +

    +
  • new: Showing QSO count below the table +
  • +
+

+
+
+
+
+

+ 2022-01-29 +

    +
  • new: dark mode (thanks to Andreas, + LA8AJA)
  • +
  • new: saving data to local storage + (thanks to Andreas, LA8AJA)
  • +
  • new: grid scrolls to last line after + adding a new qso (thanks to Andreas, LA8AJA)
  • +
  • new: website should be responsive
  • +
  • fix: some design fixes (thanks to + Andreas, LA8AJA)
  • +
  • fix: qso time loading
  • +
+

+
+
+
+
+

+ 2021-12-04 +

    +
  • new: area with QSO data has monospace + font
  • +
  • fix: callsign with slash was not + recognized
  • +
  • fix: loading qso date from date field +
  • +
+

+
+
+
+
+
\ No newline at end of file diff --git a/assets/css/general.css b/assets/css/general.css index 03f4cae7..3e3f7cec 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -543,4 +543,11 @@ div#station_logbooks_linked_table_paginate { } #awardInfoButton h2 { margin-right: 30px; +} +#simpleFleInfo { + display: flex; + align-items: center; +} +#simpleFleInfo h2 { + margin-right: 30px; } \ No newline at end of file