diff --git a/application/controllers/Dashboard.php b/application/controllers/Dashboard.php index bb5d9137..d20291e3 100644 --- a/application/controllers/Dashboard.php +++ b/application/controllers/Dashboard.php @@ -2,13 +2,6 @@ class Dashboard extends CI_Controller { - /* - TODO - - DXCLuster Spots - - Breakdown of QSOs per band/mode - - Countries worked - */ - public function index() { // Check our version and run any migrations diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index 07a00f79..5fc6c957 100755 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -47,9 +47,9 @@ class Logbook extends CI_Controller { // load the view $data['page_title'] = "Logbook"; - $this->load->view('layout/header', $data); + $this->load->view('interface_assets/header', $data); $this->load->view('view_log/index'); - $this->load->view('layout/footer'); + $this->load->view('interface_assets/footer'); } diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index acece818..92716eb4 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -87,5 +87,25 @@ $(document).ready(function(){ +uri->segment(1) == "logbook") { ?> + + + + \ No newline at end of file diff --git a/application/views/view_log/index.php b/application/views/view_log/index.php index 2a1a62cc..06e046c3 100644 --- a/application/views/view_log/index.php +++ b/application/views/view_log/index.php @@ -1,55 +1,6 @@ - - - - - - - - - -
+

Logbook

diff --git a/application/views/view_log/partial/log.php b/application/views/view_log/partial/log.php index d97248de..3d4727e5 100644 --- a/application/views/view_log/partial/log.php +++ b/application/views/view_log/partial/log.php @@ -89,39 +89,32 @@ pagination)){ ?> - +
- - diff --git a/assets/css/general.css b/assets/css/general.css index 1b746d8e..f342cb41 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -28,4 +28,34 @@ .search { padding-top: 15px; +} + +.logbook { + padding-top: 15px; +} + +TD.qsl{ + width: 20px; +} +TD.eqsl{ + width: 33px; +} +.eqsl-green{ + color: #00A000; + font-size: 1.1em; +} +.eqsl-red{ + color: #F00; + font-size: 1.1em; +} +TD.lotw{ + width: 33px; +} +.lotw-green{ + color: #00A000; + font-size: 1.1em; +} +.lotw-red{ + color: #F00; + font-size: 1.1em; } \ No newline at end of file