Skip to content

Commit

Permalink
Update header formatting in resource forcast
Browse files Browse the repository at this point in the history
  • Loading branch information
tolkamps1 committed Nov 25, 2024
1 parent dadc974 commit 62259a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion epictrack-api/src/api/reports/resource_forecast_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,11 @@ def _get_table_data(self, data, column_count, cells):
table_data.append(
[
Paragraph(
f"<b>{ea_type_label.upper()}({len(projects)})</b>", normal_style
(
f"<b>{ea_type_label.upper()} ({len(projects)} Active Work"
f"{'s' if len(projects) > 1 else ''})</b>"
),
normal_style
)
]
+ [""] * (column_count - 1)
Expand Down

0 comments on commit 62259a3

Please sign in to comment.