From 5617ea367ea47b7cba103b3ba3690d2c4ede7580 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Tue, 8 Oct 2019 21:38:34 +0100 Subject: [PATCH] Started QSL management system --- .../{Qslmanagement => Qslmanagement.php} | 6 +- application/views/qslmanagement/index.php | 57 +++++++++++++++++++ assets/css/general.css | 6 ++ 3 files changed, 68 insertions(+), 1 deletion(-) rename application/controllers/{Qslmanagement => Qslmanagement.php} (55%) create mode 100644 application/views/qslmanagement/index.php diff --git a/application/controllers/Qslmanagement b/application/controllers/Qslmanagement.php similarity index 55% rename from application/controllers/Qslmanagement rename to application/controllers/Qslmanagement.php index f2b61ce5..76db0f93 100644 --- a/application/controllers/Qslmanagement +++ b/application/controllers/Qslmanagement.php @@ -11,6 +11,10 @@ class Qslmanagement extends CI_Controller { public function index() { - echo 'Functions to come'; + $data['page_title'] = "QSL Card Management"; + + $this->load->view('interface_assets/header', $data); + $this->load->view('qslmanagement/index'); + $this->load->view('interface_assets/footer'); } } \ No newline at end of file diff --git a/application/views/qslmanagement/index.php b/application/views/qslmanagement/index.php new file mode 100644 index 00000000..a36b3028 --- /dev/null +++ b/application/views/qslmanagement/index.php @@ -0,0 +1,57 @@ +
+ session->flashdata('message')) { ?> + +
+

session->flashdata('message'); ?>

+
+ + +
+
+ +
+

Incoming QSL Cards

+
+ +
+ +
+ + + + + + + + + + + + + + + + + + + +
Date/TimeBandReportOption
1234
+
+
+ +
+ +
+
+

Outgoing QSL Cards

+
+ +
+ +
+
+
+
+
+ +
\ No newline at end of file diff --git a/assets/css/general.css b/assets/css/general.css index 6c600887..7a5c98d9 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -192,4 +192,10 @@ TD.lotw{ .settings-nav .nav-link:hover { background-color: #e1e4e8; +} + +/* QSL Card Management CSS */ + +.qsl_management { + padding-top: 15px; } \ No newline at end of file