Skip to content

Commit

Permalink
Update inspectionview.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed Jun 28, 2024
1 parent c3ff3fd commit 4dab35e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion application/views/inspectionview.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,13 @@
<div class="col-6 col-md-3 text-secondary pt-2 pb-2"><?= $this->lang->line('wheeldrive_vhcl'); ?>:</div>
<div class="col-6 col-md-3 pt-2 pb-2"><?php echo $this->lang->line($inspection->wheeldrive_vhcl); ?></div>
<div class="col-6 col-md-3 text-secondary pt-2 pb-2"><?= $this->lang->line('pdf_displpow_vhcl'); ?></div>
<div class="col-6 col-md-3 pt-2 pb-2"><?php echo number_format($inspection->pow_vhcl, 0,',', '.'); ?>kW / <?php echo number_format($inspection->displ_vhcl, 0,',', '.'); ?>ccm</td></div>
<div class="col-6 col-md-3 pt-2 pb-2"><?php echo number_format($inspection->pow_vhcl, 0,',', '.'); ?>kW / <?php
if ($inspection->displ_vhcl >0) {
echo number_format($inspection->displ_vhcl, 0,',', '.')."ccm";
} else {
echo " - ";
}
?></td></div>
<div class="col-6 col-md-3 text-secondary pt-2 pb-2"><?= $this->lang->line('mlg_vhcl'); ?>:</div>
<div class="col-6 col-md-3 pt-2 pb-2"><?php echo number_format($inspection->mlg_vhcl, 0,',', '.'); ?></div>
</div>
Expand Down

0 comments on commit 4dab35e

Please sign in to comment.