Commit d60923c7 by Jansa Jose

admin

parent 29235a76
...@@ -28,7 +28,7 @@ class ManageSpeciality extends CI_Controller { ...@@ -28,7 +28,7 @@ class ManageSpeciality extends CI_Controller {
} }
} }
$get_speciality = $this->Speciality_model->get_speciality(); $get_speciality = $this->Speciality_model->get_speciality();
$template['page'] = "ManageSpeciality/addSpeciality"; $template['page'] = "manageSpeciality/addSpeciality";
$template['page_title'] = "speciality Page"; $template['page_title'] = "speciality Page";
$template['data'] = $get_speciality; $template['data'] = $get_speciality;
$this->load->view('template', $template); $this->load->view('template', $template);
...@@ -63,7 +63,7 @@ class ManageSpeciality extends CI_Controller { ...@@ -63,7 +63,7 @@ class ManageSpeciality extends CI_Controller {
redirect(base_url().'ManageSpeciality'); redirect(base_url().'ManageSpeciality');
} }
} }
$template['page'] = "ManageSpeciality/editSpeciality"; $template['page'] = "manageSpeciality/editSpeciality";
$template['page_title'] = "speciality Page"; $template['page_title'] = "speciality Page";
$template['data'] = $get_single_speciality; $template['data'] = $get_single_speciality;
$this->load->view('template', $template); $this->load->view('template', $template);
......
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
<tr> <tr>
<td class="hidden"><?php echo $customer->id; ?></td> <td class="hidden"><?php echo $customer->id; ?></td>
<td><?php echo $customer->name; ?></td> <td><?php echo decrypt_data($customer->name); ?></td>
<td><?php echo $customer->email; ?></td> <td><?php echo $customer->email; ?></td>
<td><?php echo $customer->gender; ?></td> <td><?php echo $customer->gender; ?></td>
......
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
<td><?php echo $doctor['name']; ?></td> <td><?php echo $doctor['name']; ?></td>
<td><?php echo $doctor['gender']; ?></td> <td><?php echo $doctor['gender']; ?></td>
<td><?php echo $doctor['email']; ?></td> <td><?php echo $doctor['email']; ?></td>
<td><?php echo $doctor['street_address'].', '.$doctor['locality'].', '.$doctor['cep']; ?></td> <td><?php echo decrypt_data($doctor['street_address']).', '.decrypt_data($doctor['locality']).', '.decrypt_data($doctor['cep']); ?></td>
<td> <?php <td> <?php
if( $doctor['account_status'] =='0'){ ?> if( $doctor['account_status'] =='0'){ ?>
<a class="btn btn-sm label-success" href="<?php echo base_url();?>ManageDoctors/status/<?php echo $doctor['id']; ?>" > <a class="btn btn-sm label-success" href="<?php echo base_url();?>ManageDoctors/status/<?php echo $doctor['id']; ?>" >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment