Skip to content

Commit

Permalink
Update user profile checklists
Browse files Browse the repository at this point in the history
  • Loading branch information
BMWENING committed Mar 11, 2024
1 parent e7d5188 commit dc51112
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions resources/views/my/profile.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class="fas fa-unlink"></i>
@elseif($checks['90days'])
<td><i class="fa fa-check text-success"></i></td>
@else
<td><i class="fa fa-times text-danger"></i></td>
<td><i class="fa fa-times text-danger"></i>{!! "(".$checks['days']." days)" !!}</td>
@endif
</tr>
<tr>
Expand All @@ -224,7 +224,7 @@ class="fas fa-unlink"></i>
</tr>
<tr>
<td>It has been at least 90 days since promotion to S1, S2, S3, or C1</td>
<td>{!! ($checks['promo'])?'<i class="fa fa-check text-success"></i>':'<i class="fa fa-times text-danger"></i>' !!}</td>
<td>{!! ($checks['promo'])?'<i class="fa fa-check text-success"></i>':'<i class="fa fa-times text-danger"></i>('.$checks['promoDays'].' days)' !!}</td>
</tr>
<tr>
<td>You have controlled 50 hours since promotion to S1, S2, S3, or C1</td>
Expand Down Expand Up @@ -278,9 +278,13 @@ class="fas fa-unlink"></i>
<td>You have earned at least an S3 rating</td>
<td>{!! ($checks['hasRating'])?'<i class="fa fa-check text-success"></i>':'<i class="fa fa-times text-danger"></i>' !!}</td>
</tr>
<tr>
<td>It has been at least 60 days since you joined a visiting roster</td>
<td>{!! ($checks['60days'])?'<i class="fa fa-check text-success"></i>':'<i class="fa fa-times text-danger"></i>('.$checks['visitingDays'].' days)' !!}</td>
</tr>
<tr>
<td>It has been at least 90 days since promotion to S1, S2, S3, or C1</td>
<td>{!! ($checks['promo'])?'<i class="fa fa-check text-success"></i>':'<i class="fa fa-times text-danger"></i>' !!}</td>
<td>{!! ($checks['promo'])?'<i class="fa fa-check text-success"></i>':'<i class="fa fa-times text-danger"></i>('.$checks['promoDays'].' days)' !!}</td>
</tr>
<tr>
<td>You have controlled 50 hours since promotion to S1, S2, S3, or C1</td>
Expand Down

0 comments on commit dc51112

Please sign in to comment.