Skip to content

Commit

Permalink
Update inspectionslist.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed May 29, 2024
1 parent 8ff0ee1 commit dca47f2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions application/views/inspectionslist.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
<tr>
<th scope="col" class="text-center"><?= $this->lang->line('number_inspection'); ?></th>
<th scope="col" class="text-center"><?= $this->lang->line('date_inspection'); ?></th>
<th scope="col" class="text-center"><?= $this->lang->line('vehicle_inspection'); ?></th>
<th scope="col" class="text-center"><?= $this->lang->line('make_vhcl'); ?></th>
<th scope="col" class="text-center"><?= $this->lang->line('model_vhcl'); ?></th>
<th scope="col" class="text-center"><?= $this->lang->line('reg_vhcl'); ?></th>
<th scope="col" class="text-center"><?= $this->lang->line('vin_vhcl'); ?></th>
<th scope="col" class="text-center"><?= $this->lang->line('client_vhcl'); ?></th>
Expand All @@ -28,7 +29,8 @@
<tr>
<td class="text-left"><small><?php echo $insp->number_inspection; ?></small></td>
<td class="text-center"><?php echo $insp->date_inspection; ?></td>
<td class="text-center"><?php echo $insp->make_vhcl; ?> <?php echo $insp->model_vhcl; ?></td>
<td class="text-center"><?php echo $insp->make_vhcl; ?></td>
<td class="text-center"><?php echo $insp->model_vhcl; ?></td>
<td class="text-center"><?php echo $insp->reg_vhcl; ?></td>
<td class="text-center"><small><?php echo $insp->vin_vhcl; ?></small></td>
<td class="text-center"><?php echo $insp->name_client; ?></td>
Expand Down

0 comments on commit dca47f2

Please sign in to comment.