Skip to content

Commit

Permalink
Update inspectionview.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed Mar 13, 2024
1 parent bd44d75 commit 88fead6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/inspectionview.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@
<div class="col-sm-4 text-center">
<canvas id="cnvgauge5" ></canvas>
<div style="width:100%" class="text-center small"><?= $this->lang->line('technology_check'); ?></div>
<div id="score4" style="width:100%" class="text-center mb-2"><?= 100 * ($sec1score / 112) ?><small>%</small></div>
<div id="score4" style="width:100%" class="text-center mb-2"><?= round(100 * ($sec1score / 112), 2) ?><small>%</small></div>
</div>
<div class="col-sm-4 text-center">
<canvas id="cnvgauge6"></canvas>
<div style="width:100%" class="text-center small"><?= $this->lang->line('bodywork_check'); ?></div>
<div id="score5" style="width:100%" class="text-center mb-2"><?= 100 * ($sec2score / 62) ?><small>%</small></div>
<div id="score5" style="width:100%" class="text-center mb-2"><?= round(100 * ($sec2score / 62), 2) ?><small>%</small></div>
</div>
<div class="col-sm-4 text-center">
<canvas id="cnvgauge7"></canvas>
<div style="width:100%" class="text-center small"><?= $this->lang->line('system_check'); ?></div>
<div id="score6" style="width:100%" class="text-center mb-2"><?= 100 * ($sec3score / 16) ?><small>%</small></div>
<div id="score6" style="width:100%" class="text-center mb-2"><?= round(100 * ($sec3score / 16), 2) ?><small>%</small></div>
</div>
</div>
</div>
Expand Down

0 comments on commit 88fead6

Please sign in to comment.