Added ability to edit a locator once qso had been saved

pull/106/merge
Peter Goodhall 2011-08-21 15:15:10 +01:00
rodzic d3a7962296
commit f13c6bdcb3
2 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -55,6 +55,7 @@ class Logbook_model extends CI_Model {
'COL_MODE' => $this->input->post('mode'),
'COL_RST_RCVD' => $this->input->post('rst_recv'),
'COL_RST_SENT' => $this->input->post('rst_sent'),
'COL_GRIDSQUARE' => $this->input->post('locator'),
'COL_COMMENT' => $this->input->post('comment'),
'COL_NAME' => $this->input->post('name'),
'COL_SAT_NAME' => $this->input->post('sat_name'),

Wyświetl plik

@ -46,6 +46,11 @@
<td><input type="text" name="rst_recv" value="<?php echo $COL_RST_RCVD; ?>" /></td>
</tr>
<tr>
<td>Locator</td>
<td><input id="locator" type="text" name="locator" value="<?php echo $COL_GRIDSQUARE; ?>" size="7" /></td>
</tr>
<tr>
<td>Name</td>
<td><input type="text" name="name" value="<?php echo $COL_NAME; ?>" /></td>