Replace score labels with TrueCV Score branding
- Remove score rating labels (Excellent, Good, Fair, Poor, Very Poor) - Display "TrueCV Score" instead of rating text - Remove Rating column from batch PDF report Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -140,8 +140,7 @@
|
||||
<span class="score-max">/100</span>
|
||||
</div>
|
||||
</div>
|
||||
<h5 class="mb-0 mt-2 fw-semibold text-white">@_report.ScoreLabel</h5>
|
||||
<small class="text-white-50">Veracity Score</small>
|
||||
<small class="text-white-50 mt-2">TrueCV Score</small>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
<div class="row g-4 text-center text-md-start">
|
||||
|
||||
@@ -61,7 +61,7 @@ public class PdfReportService
|
||||
row.ConstantItem(120).Border(2).BorderColor(scoreColor).Padding(10).AlignCenter().Column(col =>
|
||||
{
|
||||
col.Item().AlignCenter().Text(report.OverallScore.ToString()).Bold().FontSize(28).FontColor(scoreColor);
|
||||
col.Item().AlignCenter().Text(report.ScoreLabel).FontSize(10).FontColor(scoreColor);
|
||||
col.Item().AlignCenter().Text("TrueCV Score").FontSize(10).FontColor(scoreColor);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -261,7 +261,6 @@ public class PdfReportService
|
||||
columns.RelativeColumn(3);
|
||||
columns.RelativeColumn(2);
|
||||
columns.ConstantColumn(50);
|
||||
columns.RelativeColumn(2);
|
||||
columns.ConstantColumn(45);
|
||||
columns.ConstantColumn(45);
|
||||
columns.ConstantColumn(45);
|
||||
@@ -273,7 +272,6 @@ public class PdfReportService
|
||||
header.Cell().Background(Colors.Blue.Darken2).Padding(5).Text("Candidate").Bold().FontColor(Colors.White);
|
||||
header.Cell().Background(Colors.Blue.Darken2).Padding(5).Text("Date").Bold().FontColor(Colors.White);
|
||||
header.Cell().Background(Colors.Blue.Darken2).Padding(5).AlignCenter().Text("Score").Bold().FontColor(Colors.White);
|
||||
header.Cell().Background(Colors.Blue.Darken2).Padding(5).Text("Rating").Bold().FontColor(Colors.White);
|
||||
header.Cell().Background(Colors.Blue.Darken2).Padding(5).AlignCenter().Text("Verified").Bold().FontColor(Colors.White);
|
||||
header.Cell().Background(Colors.Blue.Darken2).Padding(5).AlignCenter().Text("Gaps").Bold().FontColor(Colors.White);
|
||||
header.Cell().Background(Colors.Blue.Darken2).Padding(5).AlignCenter().Text("Critical").Bold().FontColor(Colors.White);
|
||||
@@ -289,7 +287,6 @@ public class PdfReportService
|
||||
table.Cell().Background(bgColor).Padding(5).Text(item.CandidateName);
|
||||
table.Cell().Background(bgColor).Padding(5).Text(item.UploadDate.ToString("dd MMM yy"));
|
||||
table.Cell().Background(bgColor).Padding(5).AlignCenter().Text(item.Score.ToString()).Bold().FontColor(scoreColor);
|
||||
table.Cell().Background(bgColor).Padding(5).Text(item.ScoreLabel);
|
||||
table.Cell().Background(bgColor).Padding(5).AlignCenter().Text(item.VerifiedEmployers + "/" + (item.VerifiedEmployers + item.UnverifiedEmployers));
|
||||
table.Cell().Background(bgColor).Padding(5).AlignCenter().Text(item.GapMonths + "mo");
|
||||
table.Cell().Background(bgColor).Padding(5).AlignCenter().Text(item.CriticalFlags.ToString()).FontColor(item.CriticalFlags > 0 ? Colors.Red.Darken1 : Colors.Grey.Medium);
|
||||
|
||||
Reference in New Issue
Block a user