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
<div class="row">
<div class="col-md-6">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">View Onprocess Bookings </h3>
<div class="box-tools pull-right">
<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">
<dl>
<dt>
Name: <span style="font-weight: normal !important"><?php echo $data->user_id; ?></span>
</dt>
<br/>
<dt>
Booking ID: <span style="font-weight: normal !important"><?php echo $data->booking_id; ?></span>
</dt>
<br/>
<dt>
Booking Date: <span style="font-weight: normal !important"><?php echo $data->booking_date; ?></span>
</dt>
<br/>
<dt>
Departure Point: <span style="font-weight: normal !important"><?php echo $data->departure_point; ?></span>
</dt>
<br/>
<dt>
Drop Point: <span style="font-weight: normal !important"><?php echo $data->drop_point; ?></span>
</dt>
<br/>
<!--
<dt>
Amount: <span style="font-weight: normal !important"><?php echo $data->no_of_seats; ?></span>
</dt>
<br/>
-->
</dl>
</div><!-- /.box-body -->
</div><!-- /.box -->
</div><!-- ./col -->
<div class="col-md-6">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">View Onprocess Bookings</h3>
<div class="box-tools pull-right">
<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">
<dl>
<dt>Image</dt>
<?php if($data->profile_photo != NULL){ ?>
<ul class="thumbnails gallery">
<li class="thumbnail" data-id="<?php echo $data->profile_photo; ?>">
<a style="background:url(<?php echo $data->profile_photo; ?>) no-repeat; background-size:200px; width:190px; height:190px;"
href="<?php echo $data->profile_photo; ?>"></a>
</li>
</ul>
<?php }
else{
?>
<img src="<?php echo base_url();?>assets/images/user_avatar.jpg" width="100px" height="100px" alt="Picture Not Found" />
<?php } ?>
</dl>
</div> --><!-- /.box-body -->
</div><!-- /.box -->
</div><!-- ./col -->
</div>