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
<?php
if(isset($data)) {
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Problem
</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<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">
<!-- general form elements -->
<div class="box box-solid box-primary">
<div class="box-header with-border">
<h3 class="box-title">Edit Problem</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><!-- /.box-header -->
<!-- form start -->
<form method="post" class="validate" role="form" data-parsley-validate>
<div class="box-body">
<div class="form-group col-md-8">
<label>Problem Category</label>
<select class="form-control" data-placeholder="Select category"
style="width: 100%;" name="problem_category_id" data-parsley-required>
<option value="-1">Select Category</option>
<?php
foreach ($data as $key => $value)
{
?>
<option <?php if($datas->problem_category_id == $value->id){ echo "Selected";}?> value="<?php echo $value->id; ?>"><?php echo $value->problem_name; ?></option>
<?php
}
?>
</select>
</div>
<div class="form-group col-md-8">
<label>Name</label>
<input type="text" name="subproblem_name" class="form-control required" placeholder="Enter Problem Name" value="<?php echo $datas->subproblem_name;?>" data-parsley-required="true">
</div>
</div><!-- /.box-body -->
<div class="box-footer">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
</div>
</div>
</div>
</section><!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php
}
else {
$this->load->view("error_500");
}
?>