[Account] Improved interface design using an accordion system
这个提交包含在:
当前提交
2de85a6e3a
共有 33 个文件被更改,包括 1129 次插入 和 1431 次删除
|
|
@ -48,6 +48,8 @@ class User extends CI_Controller {
|
|||
$this->form_validation->set_rules('user_locator', 'Locator', 'callback_check_locator');
|
||||
$this->form_validation->set_rules('user_timezone', 'Timezone', 'required');
|
||||
|
||||
$data['user_add'] = true;
|
||||
$data['user_form_action'] = site_url('user/add');
|
||||
$data['bands'] = $this->bands->get_user_bands();
|
||||
|
||||
// Get themes list
|
||||
|
|
@ -94,9 +96,9 @@ class User extends CI_Controller {
|
|||
$data['user_quicklog'] = $this->input->post('user_quicklog');
|
||||
$data['user_quicklog_enter'] = $this->input->post('user_quicklog_enter');
|
||||
$data['language'] = $this->input->post('language');
|
||||
$this->load->view('user/add', $data);
|
||||
$this->load->view('user/edit', $data);
|
||||
} else {
|
||||
$this->load->view('user/add', $data);
|
||||
$this->load->view('user/edit', $data);
|
||||
}
|
||||
$this->load->view('interface_assets/footer');
|
||||
} else {
|
||||
|
|
@ -182,7 +184,7 @@ class User extends CI_Controller {
|
|||
$data['user_quicklog'] = $this->input->post('user_quicklog');
|
||||
$data['user_quicklog_enter'] = $this->input->post('user_quicklog_enter');
|
||||
$data['language'] = $this->input->post('language');
|
||||
$this->load->view('user/add', $data);
|
||||
$this->load->view('user/edit', $data);
|
||||
$this->load->view('interface_assets/footer');
|
||||
}
|
||||
}
|
||||
|
|
@ -225,6 +227,7 @@ class User extends CI_Controller {
|
|||
$this->form_validation->set_rules('user_locator', 'Locator', 'callback_check_locator');
|
||||
$this->form_validation->set_rules('user_timezone', 'Timezone', 'required');
|
||||
|
||||
$data['user_form_action'] = site_url('user/edit')."/".$this->uri->segment(3);;
|
||||
$data['bands'] = $this->bands->get_user_bands();
|
||||
|
||||
// Get themes list
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ $lang['account_column5_text'] = 'Избор за колона 5 (само за
|
|||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = 'Account Information';
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
|
|
@ -26,9 +26,11 @@ $lang['account_word_admin'] = 'Admin';
|
|||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = 'Personal Information';
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
|
|
@ -84,7 +86,7 @@ $lang['account_eqsl'] = 'eQSL';
|
|||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = 'Save Account Changes';
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -29,6 +29,8 @@ $lang['account_stylesheet'] = '样式表';
|
|||
$lang['account_personal_information'] = '个人信息';
|
||||
$lang['account_first_name'] = '姓';
|
||||
$lang['account_last_name'] = '名';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = '呼号';
|
||||
$lang['account_gridsquare'] = '梅登海德网格';
|
||||
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Cloudlog 中对 Winkeyer 的支持是实验性的,请在开启前先阅读 <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a>。";
|
||||
$lang['account_winkeyer_enabled'] = "启用 Winkeyer 功能";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -29,6 +29,8 @@ $lang['account_stylesheet'] = 'Styl';
|
|||
$lang['account_personal_information'] = 'Osobní informace';
|
||||
$lang['account_first_name'] = 'Jméno';
|
||||
$lang['account_last_name'] = 'Příjmení';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Značka';
|
||||
$lang['account_gridsquare'] = 'Locátor';
|
||||
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ $lang['account_column5_text'] = 'Choose column 5 (only for logbook)';
|
|||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = 'Account Information';
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
|
|
@ -26,9 +26,11 @@ $lang['account_word_admin'] = 'Admin';
|
|||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = 'Personal Information';
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
|
|
@ -84,7 +86,7 @@ $lang['account_eqsl'] = 'eQSL';
|
|||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = 'Save Account Changes';
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -12,7 +12,7 @@ $lang['account_column5_text'] = 'Choose column 5 (only for logbook)';
|
|||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = 'Account Information';
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
|
|
@ -26,9 +26,11 @@ $lang['account_word_admin'] = 'Admin';
|
|||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = 'Personal Information';
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
|
|
@ -84,7 +86,7 @@ $lang['account_eqsl'] = 'eQSL';
|
|||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = 'Save Account Changes';
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
|
|
@ -115,8 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ $lang['account_column5_text'] = 'Sarake 5 (vain lokikirjassa)';
|
|||
$lang['account_create_user_account'] = 'Luo käyttäjätili';
|
||||
$lang['account_edit_account'] = 'Muokkaa käyttäjätiliä';
|
||||
|
||||
$lang['account_account_information'] = 'Account Information';
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'käyttäjänimi';
|
||||
|
|
@ -29,6 +29,8 @@ $lang['account_stylesheet'] = 'Tyylisivu';
|
|||
$lang['account_personal_information'] = 'Henkilötiedot';
|
||||
$lang['account_first_name'] = 'Etunimi';
|
||||
$lang['account_last_name'] = 'Sukunimi';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Radioamatöörikutsu';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -12,7 +12,7 @@ $lang['account_column5_text'] = "Contenu colonne 5 (uniquement pour logbook)";
|
|||
$lang['account_create_user_account'] = "Créer un compte";
|
||||
$lang['account_edit_account'] = "Editer un compte";
|
||||
|
||||
$lang['account_account_information'] = "Informations du compte";
|
||||
$lang['account_account_information'] = "Compte";
|
||||
$lang['account_user'] = "Compte";
|
||||
$lang['account_word_edited'] = "mis à jour";
|
||||
$lang['account_username'] = "Utilisateur";
|
||||
|
|
@ -118,4 +118,10 @@ $lang['account_winkeyer_enabled'] = "Activer Winkeyer";
|
|||
$lang['account_map_params'] = "Paramètre de la carte";
|
||||
$lang['account_map_qso_by_default'] = "QSO (par défaut)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmé)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(Si 'Non', sera affiché comme ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(Si 'Non', sera affiché comme ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "Informations Générales";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Valeur par défaut";
|
||||
$lang['account_miscellaneous'] = "Divers";
|
||||
|
|
@ -16,7 +16,7 @@ $lang['account_account_information'] = 'Benutzerkonto Informationen';
|
|||
$lang['account_user'] = "Benutzer";
|
||||
$lang['account_word_edited'] = "bearbeitet";
|
||||
$lang['account_username'] = 'Benutzername';
|
||||
$lang['account_email_address'] = 'Emailadresse';
|
||||
$lang['account_email_address'] = 'E-Mail Adresse';
|
||||
$lang['account_password'] = 'Passwort';
|
||||
|
||||
$lang['account_roles'] = 'Rollen';
|
||||
|
|
@ -29,6 +29,8 @@ $lang['account_stylesheet'] = 'Stylesheet';
|
|||
$lang['account_personal_information'] = 'Informationen';
|
||||
$lang['account_first_name'] = 'Vorname';
|
||||
$lang['account_last_name'] = 'Nachname';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Rufzeichen';
|
||||
$lang['account_gridsquare'] = 'Planquadrat';
|
||||
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Die Winkeyer Unterstützung in Cloudlog ist sehr experimentell. Lese zuerst den Wikieintrag auf <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> bevor du ihn einschaltest.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Eingeschaltet";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_params'] = "Karten Einstellungen";
|
||||
$lang['account_map_qso_by_default'] = "QSO (standardmässig)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (bestätigte)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(Falls 'Nein', wird '".$lang['account_map_qso_by_default']."' verwendet)";
|
||||
|
||||
$lang['account_general_information'] = "Generelle Informationen";
|
||||
$lang['account_qso_logging_options'] = "QSO-Logging Optionen";
|
||||
$lang['account_third_party_services'] = "Externe Dienste";
|
||||
$lang['account_default_values'] = "Standardwerte / Favoriten";
|
||||
$lang['account_miscellaneous'] = "Verschiedenes";
|
||||
|
|
@ -12,7 +12,7 @@ $lang['account_column5_text'] = 'Επιλογή στήλης 5 (Μόνο για
|
|||
$lang['account_create_user_account'] = "Create User Account";
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = 'Account Information';
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
|
|
@ -26,9 +26,11 @@ $lang['account_word_admin'] = 'Admin';
|
|||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = 'Personal Information';
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
|
|
@ -84,7 +86,7 @@ $lang['account_eqsl'] = 'eQSL';
|
|||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = 'Save Account Changes';
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -12,7 +12,7 @@ $lang['account_column5_text'] = 'Scegli colonna 5 (solo per il logbook)';
|
|||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = 'Account Information';
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
|
|
@ -26,9 +26,11 @@ $lang['account_word_admin'] = 'Admin';
|
|||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = 'Personal Information';
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
|
|
@ -84,7 +86,7 @@ $lang['account_eqsl'] = 'eQSL';
|
|||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = 'Save Account Changes';
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -12,7 +12,7 @@ $lang['account_column5_text'] = 'Kolumna 5 (tylko dla logu)';
|
|||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = 'Account Information';
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
|
|
@ -26,9 +26,11 @@ $lang['account_word_admin'] = 'Admin';
|
|||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = 'Personal Information';
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
|
|
@ -84,7 +86,7 @@ $lang['account_eqsl'] = 'eQSL';
|
|||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = 'Save Account Changes';
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -29,6 +29,8 @@ $lang['account_stylesheet'] = 'Шаблон';
|
|||
$lang['account_personal_information'] = 'Персональная информация';
|
||||
$lang['account_first_name'] = 'Имя';
|
||||
$lang['account_last_name'] = 'Фамилия';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Позывной';
|
||||
$lang['account_gridsquare'] = 'QTH локатор';
|
||||
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Поддержка Winkeyer в Cloudlog в стадии эксперимента, прочитайте сначала вики (<a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a>) перед включением.";
|
||||
$lang['account_winkeyer_enabled'] = "Функционал Winkeyer включен";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -12,7 +12,7 @@ $lang['account_column5_text'] = 'Columna 5 (solo en logbook)';
|
|||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = 'Account Information';
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
|
|
@ -26,9 +26,11 @@ $lang['account_word_admin'] = 'Admin';
|
|||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = 'Personal Information';
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
|
|
@ -84,7 +86,7 @@ $lang['account_eqsl'] = 'eQSL';
|
|||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = 'Save Account Changes';
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -29,6 +29,8 @@ $lang['account_stylesheet'] = 'Stilmall';
|
|||
$lang['account_personal_information'] = 'Personlig information';
|
||||
$lang['account_first_name'] = 'Förnamn';
|
||||
$lang['account_last_name'] = 'Efternamn';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -12,7 +12,7 @@ $lang['account_column5_text'] = '5. sütunu seçin (sadece kayıt defteri için)
|
|||
$lang['account_create_user_account'] = 'Create User Account';
|
||||
$lang['account_edit_account'] = 'Edit Account';
|
||||
|
||||
$lang['account_account_information'] = 'Account Information';
|
||||
$lang['account_account_information'] = "Account";
|
||||
$lang['account_user'] = "User";
|
||||
$lang['account_word_edited'] = "edited";
|
||||
$lang['account_username'] = 'Username';
|
||||
|
|
@ -26,9 +26,11 @@ $lang['account_word_admin'] = 'Admin';
|
|||
$lang['account_theme'] = 'Theme';
|
||||
$lang['account_stylesheet'] = 'Stylesheet';
|
||||
|
||||
$lang['account_personal_information'] = 'Personal Information';
|
||||
$lang['account_personal_information'] = "Personal";
|
||||
$lang['account_first_name'] = 'First Name';
|
||||
$lang['account_last_name'] = 'Last Name';
|
||||
|
||||
$lang['account_hamradio_information'] = "Ham Radio";
|
||||
$lang['account_callsign'] = 'Callsign';
|
||||
$lang['account_gridsquare'] = 'Gridsquare';
|
||||
|
||||
|
|
@ -84,7 +86,7 @@ $lang['account_eqsl'] = 'eQSL';
|
|||
$lang['account_eqslcc_username'] = 'eQSL.cc Username';
|
||||
$lang['account_eqslcc_password'] = 'eQSL.cc Password';
|
||||
|
||||
$lang['account_save_account_changes'] = 'Save Account Changes';
|
||||
$lang['account_save_account_changes'] = "Save Account";
|
||||
$lang['account_create_account'] = 'Create Account';
|
||||
|
||||
$lang['account_delete_user_account'] = 'Delete User Account';
|
||||
|
|
@ -115,7 +117,13 @@ $lang['account_winkeyer'] = 'Winkeyer';
|
|||
$lang['account_winkeyer_hint'] = "Winkeyer support in Cloudlog is very experimental read the wiki first at <a href='https://github.com/magicbug/Cloudlog/wiki/Winkey' target='_blank'>https://github.com/magicbug/Cloudlog/wiki/Winkey</a> before enabling.";
|
||||
$lang['account_winkeyer_enabled'] = "Winkeyer Features Enabled";
|
||||
|
||||
$lang['account_map_params'] = "Settings for map";
|
||||
$lang['account_map_params'] = "Map Settings";
|
||||
$lang['account_map_qso_by_default'] = "QSO (by default)";
|
||||
$lang['account_map_qso_confirm'] = "QSO (confirmed)";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
$lang['account_map_qso_confirm_same_qso'] = "(If 'No', displayed as ".$lang['account_map_qso_by_default'].")";
|
||||
|
||||
$lang['account_general_information'] = "General Information";
|
||||
$lang['account_qso_logging_options'] = "QSO Logging Options";
|
||||
$lang['account_third_party_services'] = "Third Party Services";
|
||||
$lang['account_default_values'] = "Default Values";
|
||||
$lang['account_miscellaneous'] = "Miscellaneous";
|
||||
|
|
@ -3067,7 +3067,7 @@ function viewEqsl(picture, callsign) {
|
|||
<?php } ?>
|
||||
<?php } ?>
|
||||
|
||||
<?php if (($this->uri->segment(1) == "user") && ($this->uri->segment(2) == "edit")) { ?>
|
||||
<?php if ($this->uri->segment(1) == "user") { ?>
|
||||
<!-- [MAP Custom] select list with icons -->
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
|
|
@ -3088,6 +3088,20 @@ function viewEqsl(picture, callsign) {
|
|||
}
|
||||
$('.icon_selectBox_data[data-boxcontent="'+boxcontent+'"]').hide();
|
||||
});
|
||||
|
||||
$('.collapse').on('shown.bs.collapse', function(e) {
|
||||
var $card = $(this).closest('.accordion-item');
|
||||
var $open = $($(this).data('parent')).find('.collapse.show');
|
||||
|
||||
var additionalOffset = 0;
|
||||
if($card.prevAll().filter($open.closest('.accordion-item')).length !== 0)
|
||||
{
|
||||
additionalOffset = $open.height();
|
||||
}
|
||||
$('html,body').animate({
|
||||
scrollTop: $card.offset().top - additionalOffset
|
||||
}, 300);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<?php } ?>
|
||||
|
|
|
|||
|
|
@ -1,649 +0,0 @@
|
|||
<div class="container">
|
||||
<h3>
|
||||
<?php echo lang('account_create_user_account'); ?>
|
||||
</h3>
|
||||
<?php if($this->session->flashdata('notice')) { ?>
|
||||
<div id="message">
|
||||
<?php echo $this->session->flashdata('notice'); ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php $this->load->helper('form'); ?>
|
||||
<?php echo validation_errors(); ?>
|
||||
|
||||
<form method="post" action="<?php echo site_url('user/add'); ?>" name="users">
|
||||
<div class="row">
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_account_information'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<div class="mb-3">
|
||||
<label><?php echo lang('account_username'); ?></label>
|
||||
<input class="form-control" type="text" name="user_name"
|
||||
value="<?php if(isset($user_name)) { echo $user_name; } ?>" />
|
||||
<?php if(isset($username_error)) { echo "<div class=\"small error\">".$username_error."</div>"; } ?>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label><?php echo lang('account_email_address'); ?></label>
|
||||
<input class="form-control" type="text" name="user_email"
|
||||
value="<?php if(isset($user_email)) { echo $user_email; } ?>" />
|
||||
<?php if(isset($email_error)) { echo "<div class=\"small error\">".$email_error."</div>"; } ?>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label><?php echo lang('account_password'); ?></label>
|
||||
<input class="form-control" type="password" name="user_password"
|
||||
value="<?php if(isset($user_password)) { echo $user_password; } ?>" />
|
||||
<?php if(isset($password_error)) { echo "<div class=\"small error\">".$password_error."</div>"; } ?>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_roles'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="mb-3">
|
||||
<label><?php echo lang('account_user_role'); ?></label>
|
||||
<select class="form-select" name="user_type">
|
||||
<?php
|
||||
$levels = $this->config->item('auth_level');
|
||||
foreach ($levels as $key => $value) {
|
||||
echo '<option value="'. $key . '"';
|
||||
if(isset($user_type)) {
|
||||
if($user_type == $key) {
|
||||
echo "selected=\"selected\"";
|
||||
}
|
||||
}
|
||||
echo '>' . $value . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_theme'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="user_stylesheet"><?php echo lang('account_stylesheet'); ?></label>
|
||||
<select class="form-select" id="user_stylesheet" name="user_stylesheet" required>
|
||||
<?php
|
||||
foreach ($themes as $theme) {
|
||||
echo '<option value="' . $theme->foldername . '"';
|
||||
if( $theme->foldername == 'default') {
|
||||
echo 'selected="selected"';
|
||||
}
|
||||
echo '>' . $theme->name . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<div class="row">
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_personal_information'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<div class="mb-3">
|
||||
<label><?php echo lang('account_first_name'); ?></label>
|
||||
<input class="form-control" type="text" name="user_firstname"
|
||||
value="<?php if(isset($user_firstname)) { echo $user_firstname; } ?>" />
|
||||
<?php if(isset($firstname_error)) { echo "<div class=\"small error\">".$firstname_error."</div>"; } ?>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label><?php echo lang('account_last_name'); ?></label>
|
||||
<input class="form-control" type="text" name="user_lastname"
|
||||
value="<?php if(isset($user_lastname)) { echo $user_lastname; } ?>" />
|
||||
<?php if(isset($lastname_error)) { echo "<div class=\"small error\">".$lastname_error."</div>"; } ?>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label><?php echo lang('account_callsign'); ?></label>
|
||||
<input class="form-control" type="text" name="user_callsign"
|
||||
value="<?php if(isset($user_callsign)) { echo $user_callsign; } ?>" />
|
||||
<?php if(isset($callsign_error)) { echo "<div class=\"small error\">".$callsign_error."</div>"; } ?>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label><?php echo lang('account_gridsquare'); ?></label>
|
||||
<input class="form-control" type="text" name="user_locator"
|
||||
value="<?php if(isset($user_locator)) { echo $user_locator; } ?>" />
|
||||
<?php if(isset($locator_error)) { echo "<div class=\"small error\">".$locator_error."</div>"; } ?>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_cloudlog_preferences'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<div class="mb-3">
|
||||
<label><?php echo lang('account_timezone'); ?></label>
|
||||
<?php
|
||||
if(!isset($user_timezone)) { $user_timezone = 0; }
|
||||
echo form_dropdown('user_timezone', $timezones, $user_timezone);
|
||||
?>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="logendtime"><?php echo lang('account_log_end_time'); ?></label>
|
||||
<select class="form-select" id="logendtime" name="user_qso_end_times">
|
||||
<option value="0"><?php echo lang('general_word_no'); ?></option>
|
||||
<option value="1"><?php echo lang('general_word_yes'); ?></option>
|
||||
</select>
|
||||
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_log_end_time_hint'); ?></small>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="SelectDateFormat"><?php echo lang('account_date_format'); ?></label>
|
||||
<select name="user_date_format" class="form-select" id="SelectDateFormat"
|
||||
aria-describedby="SelectDateFormatHelp">
|
||||
<option value="">Select Format</option>
|
||||
<option value="d/m/y"><?php echo date('d/m/y'); ?></option>
|
||||
<option value="d/m/Y"><?php echo date('d/m/Y'); ?></option>
|
||||
<option value="m/d/y"><?php echo date('m/d/y'); ?></option>
|
||||
<option value="m/d/Y"><?php echo date('m/d/Y'); ?></option>
|
||||
<option value="d.m.Y"><?php echo date('d.m.Y'); ?></option>
|
||||
<option value="Y-m-d"><?php echo date('Y-m-d'); ?></option>
|
||||
</select>
|
||||
|
||||
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_select_how_you_would_like_dates_shown_when_logged_into_your_account'); ?></small>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="user_measurement_base"><?php echo lang('account_measurement_preferences'); ?></label>
|
||||
<select class="form-select" id="user_measurement_base" name="user_measurement_base"
|
||||
required>
|
||||
<option value=''></option>
|
||||
<option value='K'
|
||||
<?php if($measurement_base == "K") { echo "selected=\"selected\""; } ?>>
|
||||
Kilometers</option>
|
||||
<option value='M'
|
||||
<?php if($measurement_base == "M") { echo "selected=\"selected\""; } ?>>
|
||||
Miles</option>
|
||||
<option value='N'
|
||||
<?php if($measurement_base == "N") { echo "selected=\"selected\""; } ?>>
|
||||
Nautical miles</option>
|
||||
</select>
|
||||
<small id="user_measurement_base_Help" class="form-text text-muted"><?php echo lang('account_choose_which_unit_distances_will_be_shown_in'); ?></small>
|
||||
</div>
|
||||
<?php if ($this->config->item('cl_multilanguage')) { ?>
|
||||
<div class="mb-3">
|
||||
<label for="language">Cloudlog Language</label>
|
||||
<?php
|
||||
foreach($existing_languages as $lang){
|
||||
$options[$lang] = ucfirst($lang);
|
||||
}
|
||||
echo form_dropdown('language', $options, $language);
|
||||
?>
|
||||
<small id="language_Help" class="form-text text-muted"><?php echo lang('account_choose_cloudlog_language'); ?></small>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<div class="row">
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_main_menu'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="mb-3">
|
||||
<label for="shownotes"><?php echo lang('account_show_notes_in_the_main_menu'); ?></label>
|
||||
<select class="form-select" id="shownotes" name="user_show_notes">
|
||||
<option value="0"><?php echo lang('general_word_no'); ?></option>
|
||||
<option value="1"><?php echo lang('general_word_yes'); ?></option>
|
||||
</select>
|
||||
<small> </small>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="quicklog"><?php echo lang('account_quicklog_feature'); ?></label>
|
||||
<select class="form-select" id="quicklog" name="user_quicklog">
|
||||
<option value="0"><?php echo lang('general_word_no'); ?></option>
|
||||
<option value="1"><?php echo lang('general_word_yes'); ?></option>
|
||||
</select>
|
||||
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_quicklog_feature_hint'); ?></small>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="quicklog_enter"><?php echo lang('account_quicklog_enter'); ?></label>
|
||||
<select class="form-select" id="quicklog_enter" name="user_quicklog_enter">
|
||||
<option value="0"><?php echo lang('account_quicklog_enter_log'); ?></option>
|
||||
<option value="1"><?php echo lang('account_quicklog_enter_search'); ?></option>
|
||||
</select>
|
||||
<small id="SelectDateFormatHelp" class="form-text text-muted"><?php echo lang('account_quicklog_enter_hint'); ?></small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_gridsquare_and_location_autocomplete'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<div class="row">
|
||||
<div class="mb-3 col-md-12">
|
||||
<label for="qthlookup"><?php echo lang('account_location_auto_lookup'); ?></label>
|
||||
<select class="form-select" id="qthlookup" name="user_qth_lookup">
|
||||
<option value="0"><?php echo lang('general_word_no'); ?>
|
||||
</option>
|
||||
<option value="1"><?php echo lang('general_word_yes'); ?>
|
||||
</option>
|
||||
</select>
|
||||
<div class="small form-text text-muted"><?php echo lang('account_if_set_gridsquare_is_fetched_based_on_location_name'); ?></div>
|
||||
</td>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 col-md-12">
|
||||
<label for="sotalookup"><?php echo lang('account_sota_auto_lookup_gridsquare_and_name_for_summit'); ?></label>
|
||||
<select class="form-select" id="sotalookup" name="user_sota_lookup">
|
||||
<option value="0"><?php echo lang('general_word_no'); ?>
|
||||
</option>
|
||||
<option value="1"><?php echo lang('general_word_yes'); ?>
|
||||
</option>
|
||||
</select>
|
||||
<div class="small form-text text-muted"><?php echo lang('account_if_set_name_and_gridsquare_is_fetched_from_the_api_and_filled_in_location_and_locator'); ?></div>
|
||||
</td>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 col-md-12">
|
||||
<label for="wwfflookup"><?php echo lang('account_wwff_auto_lookup_gridsquare_and_name_for_reference'); ?></label>
|
||||
<select class="form-select" id="wwfflookup" name="user_wwff_lookup">
|
||||
<option value="0"><?php echo lang('general_word_no'); ?>
|
||||
</option>
|
||||
<option value="1"><?php echo lang('general_word_yes'); ?>
|
||||
</option>
|
||||
</select>
|
||||
<div class="small form-text text-muted"><?php echo lang('account_if_set_name_and_gridsquare_is_fetched_from_the_api_and_filled_in_location_and_locator'); ?></div>
|
||||
</td>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 col-md-12">
|
||||
<label for="potalookup"><?php echo lang('account_pota_auto_lookup_gridsquare_and_name_for_park'); ?></label>
|
||||
<select class="form-select" id="potalookup" name="user_pota_lookup">
|
||||
<option value="0"><?php echo lang('general_word_no'); ?>
|
||||
</option>
|
||||
<option value="1"><?php echo lang('general_word_yes'); ?>
|
||||
</option>
|
||||
</select>
|
||||
<div class="small form-text text-muted"><?php echo lang('account_if_set_name_and_gridsquare_is_fetched_from_the_api_and_filled_in_location_and_locator'); ?></div>
|
||||
</td>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_logbook_fields'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
|
||||
<div class="row">
|
||||
<div class="mb-3 col-md-12">
|
||||
<label
|
||||
for="column1"><?php echo lang('account_column1_text'); ?></label>
|
||||
<select class="form-select" id="column1" name="user_column1">
|
||||
<option value="Band"> <?php echo lang('gen_hamradio_band'); ?>
|
||||
</option>
|
||||
<option value="Frequency">
|
||||
<?php echo lang('gen_hamradio_frequency'); ?></option>
|
||||
<option value="Mode" selected='selected'>
|
||||
<?php echo lang('gen_hamradio_mode'); ?></option>
|
||||
<option value="RSTS"><?php echo lang('gen_hamradio_rsts'); ?>
|
||||
</option>
|
||||
<option value="RSTR"><?php echo lang('gen_hamradio_rstr'); ?>
|
||||
</option>
|
||||
<option value="Country">
|
||||
<?php echo lang('general_word_country'); ?></option>
|
||||
<option value="IOTA"><?php echo lang('gen_hamradio_iota'); ?>
|
||||
</option>
|
||||
<option value="SOTA"><?php echo lang('gen_hamradio_sota'); ?>
|
||||
</option>
|
||||
<option value="State"><?php echo lang('gen_hamradio_state'); ?>
|
||||
</option>
|
||||
<option value="Grid">
|
||||
<?php echo lang('gen_hamradio_gridsquare'); ?></option>
|
||||
<option value="Distance">
|
||||
<?php echo lang('gen_hamradio_distance'); ?></option>
|
||||
<option value="Operator">
|
||||
<?php echo lang('gen_hamradio_operator'); ?></option>
|
||||
<option value="Name">
|
||||
<?php echo lang('general_word_name'); ?></option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 col-md-12">
|
||||
<label
|
||||
for="column2"><?php echo lang('account_column2_text'); ?></label>
|
||||
<select class="form-select" id="column2" name="user_column2">
|
||||
<option value="Band"> <?php echo lang('gen_hamradio_band'); ?>
|
||||
</option>
|
||||
<option value="Frequency">
|
||||
<?php echo lang('gen_hamradio_frequency'); ?></option>
|
||||
<option value="Mode"> <?php echo lang('gen_hamradio_mode'); ?>
|
||||
</option>
|
||||
<option value="RSTS" selected='selected'>
|
||||
<?php echo lang('gen_hamradio_rsts'); ?></option>
|
||||
<option value="RSTR"><?php echo lang('gen_hamradio_rstr'); ?>
|
||||
</option>
|
||||
<option value="Country">
|
||||
<?php echo lang('general_word_country'); ?></option>
|
||||
<option value="IOTA"><?php echo lang('gen_hamradio_iota'); ?>
|
||||
</option>
|
||||
<option value="SOTA"><?php echo lang('gen_hamradio_sota'); ?>
|
||||
</option>
|
||||
<option value="State"><?php echo lang('gen_hamradio_state'); ?>
|
||||
</option>
|
||||
<option value="Grid">
|
||||
<?php echo lang('gen_hamradio_gridsquare'); ?></option>
|
||||
<option value="Distance">
|
||||
<?php echo lang('gen_hamradio_distance'); ?></option>
|
||||
<option value="Operator">
|
||||
<?php echo lang('gen_hamradio_operator'); ?></option>
|
||||
<option value="Name">
|
||||
<?php echo lang('general_word_name'); ?></option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 col-md-12">
|
||||
<label
|
||||
for="column3"><?php echo lang('account_column3_text'); ?></label>
|
||||
<select class="form-select" id="column3" name="user_column3">
|
||||
<option value="Band"> <?php echo lang('gen_hamradio_band'); ?>
|
||||
</option>
|
||||
<option value="Frequency">
|
||||
<?php echo lang('gen_hamradio_frequency'); ?></option>
|
||||
<option value="Mode"> <?php echo lang('gen_hamradio_mode'); ?>
|
||||
</option>
|
||||
<option value="RSTS"><?php echo lang('gen_hamradio_rsts'); ?>
|
||||
</option>
|
||||
<option value="RSTR" selected='selected'>
|
||||
<?php echo lang('gen_hamradio_rstr'); ?></option>
|
||||
<option value="Country">
|
||||
<?php echo lang('general_word_country'); ?></option>
|
||||
<option value="IOTA"><?php echo lang('gen_hamradio_iota'); ?>
|
||||
</option>
|
||||
<option value="SOTA"><?php echo lang('gen_hamradio_sota'); ?>
|
||||
</option>
|
||||
<option value="State"><?php echo lang('gen_hamradio_state'); ?>
|
||||
</option>
|
||||
<option value="Grid">
|
||||
<?php echo lang('gen_hamradio_gridsquare'); ?></option>
|
||||
<option value="Distance">
|
||||
<?php echo lang('gen_hamradio_distance'); ?></option>
|
||||
<option value="Operator">
|
||||
<?php echo lang('gen_hamradio_operator'); ?></option>
|
||||
<option value="Name">
|
||||
<?php echo lang('general_word_name'); ?></option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 col-md-12">
|
||||
<label
|
||||
for="column4"><?php echo lang('account_column4_text'); ?></label>
|
||||
<select class="form-select" id="column4" name="user_column4">
|
||||
<option value="Band" selected='selected'>
|
||||
<?php echo lang('gen_hamradio_band'); ?></option>
|
||||
<option value="Frequency">
|
||||
<?php echo lang('gen_hamradio_frequency'); ?></option>
|
||||
<option value="Mode"> <?php echo lang('gen_hamradio_mode'); ?>
|
||||
</option>
|
||||
<option value="RSTS"><?php echo lang('gen_hamradio_rsts'); ?>
|
||||
</option>
|
||||
<option value="RSTR"><?php echo lang('gen_hamradio_rstr'); ?>
|
||||
</option>
|
||||
<option value="Country">
|
||||
<?php echo lang('general_word_country'); ?></option>
|
||||
<option value="IOTA"><?php echo lang('gen_hamradio_iota'); ?>
|
||||
</option>
|
||||
<option value="SOTA"><?php echo lang('gen_hamradio_sota'); ?>
|
||||
</option>
|
||||
<option value="State"><?php echo lang('gen_hamradio_state'); ?>
|
||||
</option>
|
||||
<option value="Grid">
|
||||
<?php echo lang('gen_hamradio_gridsquare'); ?></option>
|
||||
<option value="Distance">
|
||||
<?php echo lang('gen_hamradio_distance'); ?></option>
|
||||
<option value="Operator">
|
||||
<?php echo lang('gen_hamradio_operator'); ?></option>
|
||||
<option value="Name">
|
||||
<?php echo lang('general_word_name'); ?></option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 col-md-12">
|
||||
<label
|
||||
for="column5"><?php echo lang('account_column5_text'); ?></label>
|
||||
<select class="form-select" id="column5" name="user_column5">
|
||||
<option value=""></option>
|
||||
<option value="Band"> <?php echo lang('gen_hamradio_band'); ?>
|
||||
</option>
|
||||
<option value="Frequency">
|
||||
<?php echo lang('gen_hamradio_frequency'); ?></option>
|
||||
<option value="Mode"> <?php echo lang('gen_hamradio_mode'); ?>
|
||||
</option>
|
||||
<option value="RSTS"><?php echo lang('gen_hamradio_rsts'); ?>
|
||||
</option>
|
||||
<option value="RSTR"><?php echo lang('gen_hamradio_rstr'); ?>
|
||||
</option>
|
||||
<option value="Country" selected='selected'>
|
||||
<?php echo lang('general_word_country'); ?></option>
|
||||
<option value="IOTA"><?php echo lang('gen_hamradio_iota'); ?>
|
||||
</option>
|
||||
<option value="SOTA"><?php echo lang('gen_hamradio_sota'); ?>
|
||||
</option>
|
||||
<option value="State"><?php echo lang('gen_hamradio_state'); ?>
|
||||
</option>
|
||||
<option value="Grid">
|
||||
<?php echo lang('gen_hamradio_gridsquare'); ?></option>
|
||||
<option value="Distance">
|
||||
<?php echo lang('gen_hamradio_distance'); ?></option>
|
||||
<option value="Operator">
|
||||
<?php echo lang('gen_hamradio_operator'); ?></option>
|
||||
<option value="Name">
|
||||
<?php echo lang('general_word_name'); ?></option>
|
||||
<option value="Location">
|
||||
<?php echo lang('cloudlog_station_profile'); ?></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<div class="row">
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_previous_qsl_type'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="previousqsltype"><?php echo lang('account_select_the_type_of_qsl_to_show_in_the_previous_qsos_section'); ?></label>
|
||||
<select class="form-select" id="previousqsltype" name="user_previous_qsl_type">
|
||||
<option value="0"><?php echo lang('gen_hamradio_qsl'); ?></option>
|
||||
<option value="1"><?php echo lang('lotw_short'); ?></option>
|
||||
<option value="2"><?php echo lang('eqsl_short'); ?></option>
|
||||
<option value="4">QRZ</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_qrzcom_hamqthcom_images'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="profileimages"><?php echo lang('account_show_profile_picture_of_qso_partner_from_qrzcom_hamqthcom_profile_in_the_log_qso_section'); ?></label>
|
||||
<select class="form-select" id="profileimages" name="user_show_profile_image">
|
||||
<option value="0"><?php echo lang('general_word_no'); ?></option>
|
||||
<option value="1"><?php echo lang('general_word_yes'); ?></option>
|
||||
</select>
|
||||
<div class="small form-text text-muted"><?php echo lang('account_please_set_your_qrzcom_hamqthcom_credentials_in_the_general_config_file'); ?></div>
|
||||
</td>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<div class="row">
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_amsat_status_upload'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="amsatstatusupload"><?php echo lang('account_upload_status_of_sat_qsos_to'); ?> <a href="https://www.amsat.org/status/" target="_blank">https://www.amsat.org/status/</a>.</label>
|
||||
<select class="form-select" id="amsatstatusupload" name="user_amsat_status_upload">
|
||||
<option value="0"><?php echo lang('general_word_no'); ?></option>
|
||||
<option value="1"><?php echo lang('general_word_yes'); ?></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_mastodon'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="mb-3">
|
||||
<label><?php echo lang('account_user_mastodon'); ?></label>
|
||||
<input class="form-control" type="text" name="user_mastodon_url" value="<?php if(isset($user_mastodon_url)) { echo $user_mastodon_url; } ?>" />
|
||||
<div class="small form-text text-muted"><?php echo lang('account_user_mastodon_hint'); ?></a></div></td>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<div class="row">
|
||||
<div class="col-md">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<?php echo lang('account_default_band_settings'); ?>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="mb-3">
|
||||
<label for="user_default_band"><?php echo lang('account_gridmap_default_band'); ?></label>
|
||||
|
||||
<select id="user_default_band" class="form-select" name="user_default_band">
|
||||
<option value="All">All</option>;
|
||||
<?php foreach($bands as $band) {
|
||||
echo '<option value="'.$band.'"';
|
||||
if (isset($user_default_band) && $user_default_band == $band) {
|
||||
echo ' selected';
|
||||
}
|
||||
echo '>'.$band.'</option>'."\n";
|
||||
} ?>
|
||||
</select>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label class="my-1 me-2"><?php echo lang('account_qsl_settings'); ?></label>
|
||||
<div class="form-check-inline">
|
||||
<?php echo '<input class="form-check-input" type="checkbox" name="user_default_confirmation_qsl" id="user_default_confirmation_qsl"';
|
||||
if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Q') !== false) {
|
||||
echo ' checked';
|
||||
}
|
||||
echo '>'; ?>
|
||||
<label class="form-check-label" for="user_default_confirmation_qsl">QSL</label>
|
||||
</div>
|
||||
<div class="form-check-inline">
|
||||
<?php echo '<input class="form-check-input" type="checkbox" name="user_default_confirmation_lotw" id="user_default_confirmation_lotw"';
|
||||
if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'L') !== false) {
|
||||
echo ' checked';
|
||||
}
|
||||
echo '>'; ?>
|
||||
<label class="form-check-label" for="user_default_confirmation_lotw">LoTW</label>
|
||||
</div>
|
||||
<div class="form-check-inline">
|
||||
<?php echo '<input class="form-check-input" type="checkbox" name="user_default_confirmation_eqsl" id="user_default_confirmation_eqsl"';
|
||||
if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'E') !== false) {
|
||||
echo ' checked';
|
||||
}
|
||||
echo '>'; ?>
|
||||
<label class="form-check-label" for="user_default_confirmation_eqsl">eQSL</label>
|
||||
</div>
|
||||
<div class="form-check-inline">
|
||||
<?php echo '<input class="form-check-input" type="checkbox" name="user_default_confirmation_qrz" id="user_default_confirmation_qrz"';
|
||||
if (isset($user_default_confirmation) && strpos($user_default_confirmation, 'Z') !== false) {
|
||||
echo ' checked';
|
||||
}
|
||||
echo '>'; ?>
|
||||
<label class="form-check-label" for="user_default_confirmation_qrz">QRZ.com</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<input type="hidden" name="id" value="<?php echo $this->uri->segment(3); ?>" />
|
||||
<br />
|
||||
<button type="submit" class="btn btn-primary">Create Account</button>
|
||||
<br />
|
||||
<br />
|
||||
</form>
|
||||
</div>
|
||||
文件差异内容过多而无法显示
加载差异
|
|
@ -1,9 +1,13 @@
|
|||
/*!
|
||||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
:root {
|
||||
--cl-bg: #2b3e50;
|
||||
--cl-border-btn-pwd: var(--cl-bg);
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #2b3e50;
|
||||
background-color: var(--cl-bg);
|
||||
}
|
||||
|
||||
.table {
|
||||
|
|
@ -12,7 +16,7 @@ body {
|
|||
--bs-table-active-color: #fff;
|
||||
--bs-table-hover-color: #fff;
|
||||
--bs-table-bg: #3d4e5e;
|
||||
--bs-table-accent-bg: #2b3e50;
|
||||
--bs-table-accent-bg: var(--cl-bg);
|
||||
}
|
||||
|
||||
.table-striped tbody > tr.activeRow {
|
||||
|
|
@ -106,7 +110,7 @@ div.alert-danger {
|
|||
}
|
||||
|
||||
.bootstrap-dialog.type-primary .modal-header {
|
||||
background-color: #2b3e50;
|
||||
background-color: var(--cl-bg);
|
||||
}
|
||||
|
||||
.selectize-dropdown,
|
||||
|
|
@ -175,3 +179,15 @@ div.alert-danger {
|
|||
#edit_qso:not(.btn) {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-bg: var(--cl-bg);
|
||||
--bs-accordion-btn-bg: #4e5e6c;
|
||||
--bs-accordion-active-bg: #4e5e6c;
|
||||
}
|
||||
.accordion-button.collapsed {
|
||||
border-bottom: 1px solid var(--cl-bg);
|
||||
}
|
||||
.accordion-body {
|
||||
border: 1px solid #4e5e6c;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,13 @@
|
|||
/*!
|
||||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
:root {
|
||||
--cl-bg: #2b3e50;
|
||||
--cl-border-btn-pwd: var(--cl-bg);
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #2b3e50;
|
||||
background-color: var(--cl-bg);
|
||||
}
|
||||
|
||||
.table {
|
||||
|
|
@ -12,7 +16,7 @@ body {
|
|||
--bs-table-active-color: #fff;
|
||||
--bs-table-hover-color: #fff;
|
||||
--bs-table-bg: #3d4e5e;
|
||||
--bs-table-accent-bg: #2b3e50;
|
||||
--bs-table-accent-bg: var(--cl-bg);
|
||||
}
|
||||
|
||||
.table-striped tbody > tr.activeRow {
|
||||
|
|
@ -106,7 +110,7 @@ div.alert-danger {
|
|||
}
|
||||
|
||||
.bootstrap-dialog.type-primary .modal-header {
|
||||
background-color: #2b3e50;
|
||||
background-color: var(--cl-bg);
|
||||
}
|
||||
|
||||
.selectize-dropdown,
|
||||
|
|
@ -229,3 +233,15 @@ div.alert-danger {
|
|||
#qsomap {
|
||||
height: 400px !important;
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-bg: var(--cl-bg);
|
||||
--bs-accordion-btn-bg: #4e5e6c;
|
||||
--bs-accordion-active-bg: #4e5e6c;
|
||||
}
|
||||
.accordion-button.collapsed {
|
||||
border-bottom: 1px solid var(--cl-bg);
|
||||
}
|
||||
.accordion-body {
|
||||
border: 1px solid #4e5e6c;
|
||||
}
|
||||
|
|
@ -2,6 +2,10 @@
|
|||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
|
||||
:root{
|
||||
--cl-border-btn-pwd:var(--bs-border-color);
|
||||
}
|
||||
|
||||
.selectize-input {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
|
@ -29,4 +33,9 @@
|
|||
|
||||
TD.qrz {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-btn-bg: #f9f9f9;
|
||||
--bs-accordion-active-bg: #f9f9f9;
|
||||
}
|
||||
|
|
@ -2,6 +2,10 @@
|
|||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
|
||||
:root{
|
||||
--cl-border-btn-pwd:var(--bs-border-color);
|
||||
}
|
||||
|
||||
.selectize-input {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
|
@ -92,4 +96,10 @@
|
|||
|
||||
TD.qrz {
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-btn-bg: #f9f9f9;
|
||||
--bs-accordion-active-bg: #f9f9f9;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,13 @@
|
|||
/*!
|
||||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
:root{
|
||||
--cl-border-btn-pwd:#333;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.awardsBgDanger a {
|
||||
color: white;
|
||||
|
|
@ -168,3 +175,16 @@ path.grid-worked {
|
|||
text-align: left !important;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-active-color: #FFFFFF;
|
||||
--bs-accordion-bg: var(--bs-body-bg);
|
||||
--bs-accordion-btn-bg: #2c2c2c;
|
||||
--bs-accordion-active-bg: #2c2c2c;
|
||||
--bs-accordion-btn-focus-border-color: #FFFFFF;
|
||||
--bs-accordion-btn-focus-box-shadow: initial;
|
||||
--bs-accordion-border-color: #2c2c2c;
|
||||
}
|
||||
.accordion-button.collapsed {
|
||||
border-bottom: 1px solid var(--bs-body-bg);
|
||||
}
|
||||
|
|
@ -1,6 +1,13 @@
|
|||
/*!
|
||||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
:root{
|
||||
--cl-border-btn-pwd:#333;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.awardsBgDanger a {
|
||||
color: white;
|
||||
|
|
@ -222,3 +229,17 @@ path.grid-worked {
|
|||
#qsomap {
|
||||
height: 400px !important;
|
||||
}
|
||||
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-active-color: #FFFFFF;
|
||||
--bs-accordion-bg: var(--bs-body-bg);
|
||||
--bs-accordion-btn-bg: #2c2c2c;
|
||||
--bs-accordion-active-bg: #2c2c2c;
|
||||
--bs-accordion-btn-focus-border-color: #FFFFFF;
|
||||
--bs-accordion-btn-focus-box-shadow: initial;
|
||||
--bs-accordion-border-color: #2c2c2c;
|
||||
}
|
||||
.accordion-button.collapsed {
|
||||
border-bottom: 1px solid var(--bs-body-bg);
|
||||
}
|
||||
|
|
@ -1,6 +1,9 @@
|
|||
/*!
|
||||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
:root {
|
||||
--cl-border-btn-pwd: var(--bs-body-bg);
|
||||
}
|
||||
|
||||
.table {
|
||||
--bs-table-border-color: #444444;
|
||||
|
|
@ -187,3 +190,14 @@ div.alert-danger {
|
|||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-active-color: #FFFFFF;
|
||||
--bs-accordion-btn-bg: #444444;
|
||||
--bs-accordion-active-bg: #444444;
|
||||
--bs-accordion-border-color: #444444;
|
||||
}
|
||||
.accordion-button.collapsed {
|
||||
border-bottom:1px solid var(--bs-body-bg);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
/*!
|
||||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
:root {
|
||||
--cl-border-btn-pwd: var(--bs-body-bg);
|
||||
}
|
||||
|
||||
.table {
|
||||
--bs-table-border-color: #444444;
|
||||
|
|
@ -242,3 +245,13 @@ div.alert-danger {
|
|||
#qsomap {
|
||||
height: 400px !important;
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-active-color: #FFFFFF;
|
||||
--bs-accordion-btn-bg: #444444;
|
||||
--bs-accordion-active-bg: #444444;
|
||||
--bs-accordion-border-color: #444444;
|
||||
}
|
||||
.accordion-button.collapsed {
|
||||
border-bottom:1px solid var(--bs-body-bg);
|
||||
}
|
||||
|
|
@ -1,3 +1,7 @@
|
|||
:root {
|
||||
--cl-border-btn-pwd:var(--bs-border-color);
|
||||
}
|
||||
|
||||
thead > tr > td {
|
||||
background-color: aliceblue !important;
|
||||
}
|
||||
|
|
@ -48,3 +52,8 @@ thead > tr > td {
|
|||
text-align: left !important;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-btn-bg: #f9f9f9;
|
||||
--bs-accordion-active-bg: #f9f9f9;
|
||||
}
|
||||
|
|
@ -1,3 +1,7 @@
|
|||
:root {
|
||||
--cl-border-btn-pwd:var(--bs-border-color);
|
||||
}
|
||||
|
||||
thead > tr > td {
|
||||
background-color: aliceblue !important;
|
||||
}
|
||||
|
|
@ -88,3 +92,8 @@ thead > tr > td {
|
|||
#qsomap {
|
||||
height: 400px !important;
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-btn-bg: #f9f9f9;
|
||||
--bs-accordion-active-bg: #f9f9f9;
|
||||
}
|
||||
|
|
@ -333,7 +333,7 @@ TD.lotw {
|
|||
* Debug CSS
|
||||
*/
|
||||
|
||||
.debug_main .card {
|
||||
.card {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
|
@ -743,4 +743,12 @@ table.dataTable tfoot td {
|
|||
|
||||
#partial_view .table-responsive {
|
||||
overflow-x: unset;
|
||||
}
|
||||
|
||||
label {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.btn-pwd-showhide, .btn-pwd-showhide:hover {
|
||||
border: 1px solid var(--cl-border-btn-pwd);
|
||||
}
|
||||
|
|
@ -1,9 +1,13 @@
|
|||
/*!
|
||||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
:root {
|
||||
--cl-bg: #2b3e50;
|
||||
--cl-border-btn-pwd: var(--cl-bg);
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #2b3e50;
|
||||
background-color: var(--cl-bg);
|
||||
}
|
||||
|
||||
.table {
|
||||
|
|
@ -12,7 +16,7 @@ body {
|
|||
--bs-table-active-color: #fff;
|
||||
--bs-table-hover-color: #fff;
|
||||
--bs-table-bg: #3d4e5e;
|
||||
--bs-table-accent-bg: #2b3e50;
|
||||
--bs-table-accent-bg: var(--cl-bg);
|
||||
}
|
||||
|
||||
.table-striped tbody > tr.activeRow {
|
||||
|
|
@ -106,7 +110,7 @@ div.alert-danger {
|
|||
}
|
||||
|
||||
.bootstrap-dialog.type-primary .modal-header {
|
||||
background-color: #2b3e50;
|
||||
background-color: var(--cl-bg);
|
||||
}
|
||||
|
||||
.selectize-dropdown,
|
||||
|
|
@ -175,3 +179,15 @@ div.alert-danger {
|
|||
#edit_qso:not(.btn) {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-bg: var(--cl-bg);
|
||||
--bs-accordion-btn-bg: #4e5e6c;
|
||||
--bs-accordion-active-bg: #4e5e6c;
|
||||
}
|
||||
.accordion-button.collapsed {
|
||||
border-bottom: 1px solid var(--cl-bg);
|
||||
}
|
||||
.accordion-body {
|
||||
border: 1px solid #4e5e6c;
|
||||
}
|
||||
|
|
@ -1,9 +1,13 @@
|
|||
/*!
|
||||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
:root {
|
||||
--cl-bg: #2b3e50;
|
||||
--cl-border-btn-pwd: var(--cl-bg);
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #2b3e50;
|
||||
background-color: var(--cl-bg);
|
||||
}
|
||||
|
||||
.table {
|
||||
|
|
@ -12,7 +16,7 @@ body {
|
|||
--bs-table-active-color: #fff;
|
||||
--bs-table-hover-color: #fff;
|
||||
--bs-table-bg: #3d4e5e;
|
||||
--bs-table-accent-bg: #2b3e50;
|
||||
--bs-table-accent-bg: var(--cl-bg);
|
||||
}
|
||||
|
||||
.table-striped tbody > tr.activeRow {
|
||||
|
|
@ -148,7 +152,7 @@ div.alert-danger {
|
|||
}
|
||||
|
||||
.bootstrap-dialog.type-primary .modal-header {
|
||||
background-color: #2b3e50;
|
||||
background-color: var(--cl-bg);
|
||||
}
|
||||
|
||||
.selectize-dropdown,
|
||||
|
|
@ -229,3 +233,15 @@ div.alert-danger {
|
|||
max-width: 1800px
|
||||
}
|
||||
}
|
||||
|
||||
.accordion {
|
||||
--bs-accordion-bg: var(--cl-bg);
|
||||
--bs-accordion-btn-bg: #4e5e6c;
|
||||
--bs-accordion-active-bg: #4e5e6c;
|
||||
}
|
||||
.accordion-button.collapsed {
|
||||
border-bottom: 1px solid var(--cl-bg);
|
||||
}
|
||||
.accordion-body {
|
||||
border: 1px solid #4e5e6c;
|
||||
}
|
||||
|
|
@ -572,4 +572,16 @@ function qso_set_eqsl_qslmsg(station_id, force_diff_to_origin=false, object='')
|
|||
},
|
||||
error: function() { },
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// [PWD] button show/hide //
|
||||
function btn_pwd_showhide() {
|
||||
if ($(this).closest('div').find('input[type="password"]').length>0) {
|
||||
$(this).closest('div').find('input[type="password"]').attr('type','text');
|
||||
$(this).closest('div').find('.fa-eye-slash').removeClass('fa-eye-slash').addClass('fa-eye');
|
||||
} else {
|
||||
$(this).closest('div').find('input[type="text"]').attr('type','password');
|
||||
$(this).closest('div').find('.fa-eye').removeClass('fa-eye').addClass('fa-eye-slash');
|
||||
}
|
||||
}
|
||||
$('.user_edit .btn-pwd-showhide').off('click').on('click', btn_pwd_showhide );
|
||||
正在加载…
在新工单中引用