bug fixes and new additions

This commit is contained in:
Kwesi Banson Jnr
2025-08-13 00:10:17 +00:00
parent cf39ff2682
commit eabf61b7da
133 changed files with 4231 additions and 590 deletions

View File

@@ -21,7 +21,7 @@
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="x_panel">
<div class="x_title">
Update Onboarding Checklist
Onboarding Checklist Status
@include('commons.notifications')
<div class="clearfix"></div>
</div>
@@ -30,7 +30,7 @@
<br>
<div class="table-responsive">
<table class="table table-striped table-bordered table-condensed" style="width: 100%;">
<table class="table table-striped table-bordered jambo_table table-condensed" style="width: 100%;">
<thead>
<tr class="headings">
<th class="column-title">Stage</th>
@@ -46,12 +46,12 @@
</tr>
@else
@foreach ($onboarding_stages as $row)
<tr class="even pointer">
<td class="mes-td" >{{ $row->stage_id }}</td>
<td class="mes-td">{{ $row->name }}</td>
<td class="mes-td <?php echo ($row->status == 'COMPLETED') ? 'text-success' : 'text-danger'; ?>" >
<tr class="even pointer" scope="row">
<td class="<?php echo ($row->stage_id == 1) ? 'bg-success' : ((($row->stage_id == 2)) ? 'bg-warning' : 'bg-info'); ?> " >{{ $row->stage_id }}</td>
<td class="">{{ $row->name }}</td>
<td class="<?php echo ($row->status == 'COMPLETED') ? 'text-success' : 'text-danger'; ?>" >
{{ $row->status }}
<!-- (($row->stage_id == 3)) ? 'bg-info' : 'bg-success'; -->
</td>
</tr>
@endforeach