1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Major Problems
</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<!-- Add -->
<div class="col-md-12">
<?php
if($this->session->flashdata('message')) {
$message = $this->session->flashdata('message');
?>
<div class="alert alert-<?php echo $message['class']; ?>">
<button class="close" data-dismiss="alert" type="button">×</button>
<?php echo $message['message']; ?>
</div>
<?php
}
?>
</div>
<!-- <div class="col-md-12">
<div class="box box-info box-solid">
<div class="box-header with-border">
<h3 class="box-title">Add New</h3>
<div class="pull-right box-tools">
<button class="btn btn-info btn-sm" title="" data-toggle="tooltip" data-widget="collapse" data-original-title="Collapse">
<i class="fa fa-minus"></i>
</button>
</div>
</div>
<form method="post" class="validate" role="form" data-parsley-validate>
<div class="box-body">
<div class="form-group">
<label>Name</label>
<input type="text" name="problem_name" class="form-control required" placeholder="Enter Problem Name" data-parsley-required="true">
</div>
</div>
<div class="box-footer">
<button type="submit" class="btn btn-info">Submit</button>
</div>
</form>
</div>
</div> -->
<!--/.col (Add) -->
<div class="col-xs-12">
<div class="box box-info">
<div class="box-header">
<h3 class="box-title">List of Problems</h3>
<div class="pull-right box-tools">
<button class="btn btn-info btn-sm" title="" data-toggle="tooltip" data-widget="collapse" data-original-title="Collapse">
<i class="fa fa-minus"></i>
</button>
</div>
</div>
<div class="box-body">
<?php if($data) {?>
<table class="table table-bordered table-striped datatable" data-ordering="true">
<thead>
<tr>
<th class="hidden">ID</th>
<th>Problem Name </th>
<!-- <th> Dosage</th> -->
<!-- <th width="200px">Actions</th> -->
</tr>
</thead>
<tbody>
<?php
foreach($data as $problem) {
?>
<tr>
<td class="hidden"><?php echo $problem->id;?></td>
<td><?php echo $problem->problem_name;?></td>
<!-- <td>
<a class='btn btn-sm btn-primary' href='<?php echo base_url(); ?>MajorProblems/problem_edit/<?php echo $problem->id; ?>'> <i class='fa fa-fw fa-edit'></i> Edit </a>
<a class='btn btn-sm btn-danger' href='<?php echo base_url(); ?>MajorProblems/problem_delete/<?php echo $problem->id; ?>'> <i class='fa fa-fw fa-trash'></i> Delete </a>
</td>-->
</tr>
<?php
}
?>
</tbody>
<tfoot>
<tr>
<th class="hidden">ID</th>
<th> Problem Name </th>
<!-- <th> Dosage</th> -->
<!-- <th>Actions</th> -->
</tr>
</tfoot>
</table>
<?php } else{?>
<div>No Data Found</div>
<?php } ?>
</div>
</div>
</div>
</div> <!-- /.row -->
</section><!-- /.content -->
</div>
<!-- /.content-wrapper -->