Added hint for next automatic syncs to eQSL, LoTW and QRZ

This commit is contained in:
int2001
2024-10-18 09:36:35 +00:00
parent 9a4041357a
commit 82e52a3619
7 changed files with 24 additions and 1 deletions

View File

@@ -199,6 +199,9 @@ class Qrz extends CI_Controller {
$data['station_profile'] = $this->stations->stations_with_qrz_api_key();
$this->load->model('Stations');
$data['callsigns'] = $this->Stations->callsigns_of_user($this->session->userdata('user_id'));
$this->load->model('cron_model');
$data['next_run_up'] = $this->cron_model->get_next_run("qrz_upload");
$data['next_run_down'] = $this->cron_model->get_next_run("qrz_download");
$this->load->view('interface_assets/header', $data);
$this->load->view('qrz/export');