diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 1fe15d55..349e9c07 100755 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -99,9 +99,7 @@ class QSO extends CI_Controller { if ($this->form_validation->run() == FALSE) { - $this->load->view('layout/mini_header', $data); - $this->load->view('qso/edit'); - $this->load->view('layout/mini_footer'); + $this->load->view('qso/edit', $data); } else { diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 42762be3..662e57d0 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -257,7 +257,8 @@ class Logbook_model extends CI_Model { 'COL_PROP_MODE' => $this->input->post('prop_mode'), 'COL_FREQ_RX' => $this->parse_frequency($this->input->post('freq_display_rx')), 'COL_STX_STRING' => $this->input->post('stx_string'), - 'COL_SRX_STRING' => $this->input->post('srx_string') + 'COL_SRX_STRING' => $this->input->post('srx_string'), + 'COL_QSL_VIA' => $this->input->post('qsl_via_callsign') ); $this->db->where('COL_PRIMARY_KEY', $this->input->post('id')); diff --git a/application/views/qso/edit.php b/application/views/qso/edit.php index 239efd44..f8ed38c5 100755 --- a/application/views/qso/edit.php +++ b/application/views/qso/edit.php @@ -1,28 +1,28 @@ - - - - - + - + + + + + + + + + + + + - - - - +
-

Delete QSO Delete

+

Delete QSO

@@ -152,102 +152,132 @@

QSLing

- - -
-
- - - - - - - - - + + + - - - - - - -
Sent - Recv
- + + + +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+
+ +
+
+ - -
- - - - - - - -
Sent - Recv + + + +
+ +
+
-
-
- - - - - - - -
Sent + + +
+
+ +
+
Recv + + +
+ +
+
-
- + + + + + diff --git a/assets/css/general.css b/assets/css/general.css index ef03327c..77602427 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -102,4 +102,8 @@ TD.lotw{ .lotw-red{ color: #F00; font-size: 1.1em; +} + +.qso-edit-box { + padding: 10px; } \ No newline at end of file