Finish config module restyle (#116)

This commit is contained in:
jekkos
2016-02-22 23:39:33 +01:00
parent 80d7079953
commit deb4a501d6
9 changed files with 2947 additions and 150 deletions

View File

@@ -13,10 +13,10 @@ class Employees extends Person_controller
$data['controller_name'] = $this->get_controller_name();
$data['form_width'] = $this->get_form_width();
$lines_per_page = $this->Appconfig->get('lines_per_page');
$suppliers = $this->Employee->get_all($lines_per_page, $limit_from);
$employees = $this->Employee->get_all($lines_per_page, $limit_from);
$data['links'] = $this->_initialize_pagination($this->Employee, $lines_per_page, $limit_from);
$data['manage_table'] = get_people_manage_table($suppliers, $this);
$this->load->view('suppliers/manage',$data);
$data['manage_table'] = get_people_manage_table($employees, $this);
$this->load->view('people/manage',$data);
}
/*