From aed9a85b055cfd61a70590f48ebb3fcdd53430f7 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 24 Sep 2024 08:55:05 -0400 Subject: [PATCH] past due jobs --- application/controllers/Bkouser.php | 13 ++- application/views/bko_pages/pastdue_jobs.php | 108 +++++++++++++++++++ 2 files changed, 119 insertions(+), 2 deletions(-) create mode 100644 application/views/bko_pages/pastdue_jobs.php diff --git a/application/controllers/Bkouser.php b/application/controllers/Bkouser.php index 7d0212e..d1a5cee 100644 --- a/application/controllers/Bkouser.php +++ b/application/controllers/Bkouser.php @@ -33,9 +33,18 @@ class Bkouser extends Bko_Controller { } public function pastdue(){ + $this->load->library('table'); + $mysql = "SELECT * FROM blog_selections"; + $this->table->set_template($this->template); + $query = $this->db->query($mysql); + $data['past_due_table'] = $this->table->generate($query); + + $this->load->view('bko/view_bko_header', $data); + $this->load->view('bko_pages/pastdue_jobs', $data); + $this->load->view('bko/view_bko_footer', $data); + + // return $this->offers(); - return $this->offers(); - } public function offers() { // $this->load->view('bko/view_bko_header', $data); diff --git a/application/views/bko_pages/pastdue_jobs.php b/application/views/bko_pages/pastdue_jobs.php new file mode 100644 index 0000000..f75020c --- /dev/null +++ b/application/views/bko_pages/pastdue_jobs.php @@ -0,0 +1,108 @@ +
+ +
+ +
+ + +
+
+ + +
+ +
+
Past Due Jobs
+
+
+ +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+
+ + + +
+
+
.
+
+
+
+ +
+
+
+ +
+ +
+
+ +
+ + + +
+ + + + +
+ + \ No newline at end of file