22d71f0e by G Manojkumar

Supervisor dropdown alignment

1 parent dc79404a
...@@ -4,24 +4,30 @@ ...@@ -4,24 +4,30 @@
4 <h2>Output Report</h2> 4 <h2>Output Report</h2>
5 <p></p> 5 <p></p>
6 </div> 6 </div>
7 <label> 7
8 User Id 8 <div class="row">
9 <div class="column">
10 <form class="form-horizontal" id="output-report-supervisor" name="output-report-supervisor">
11 <div class="table-responsive" style="background: #fff;">
12 <br>
13 <div class="dropdown">
14 <label style="text-indent: 2em;">
15 <h5>
16 Select RM/PB :
17 </h5>
9 </label> 18 </label>
10 <select id="supervisorid" style="border:1px solid #efefef;" onchange='userchange("");'> 19 <select id="supervisorid" style="border:3px solid #efefef;" onchange='userchange("");'>
11 <option value="ALL">ALL 20 <option value="ALL">ALL
12 </option> 21 </option>
13 <?php 22 <?php
14 foreach($supervisor as $user){ 23 foreach($supervisor as $user){
15 $selected = ($user->id == $users)?"selected":""; 24 $selected = ($user->id == $users)?"selected":"";
16 ?> 25 ?>
17 <option value="{{$user->id }}" {{$selected}}>{{$user->username}}</option> 26 <option value="{{$user->id }}" {{$selected}}>{{$user->username}}</option>
18 <?php } ?> 27 <?php } ?>
19 </select> 28 </select>
20 <div class="row"> 29 </div>
21 <div class="column"> 30 <br>
22 <form class="form-horizontal" id="output-report" name="output-report">
23 <div class="table-responsive" style="background: #fff;">
24
25 <table class="table"> 31 <table class="table">
26 <thead> 32 <thead>
27 <tr> 33 <tr>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!