diff --git a/atst/domain/reports.py b/atst/domain/reports.py new file mode 100644 index 00000000..1d14e006 --- /dev/null +++ b/atst/domain/reports.py @@ -0,0 +1,9 @@ +class Reports: + + @classmethod + def workspace_totals(cls, workspace): + return { + 'budget': 100_000_000, + 'spent': 40_000_000, + } + diff --git a/templates/workspace_reports.html b/templates/workspace_reports.html index af72b3cf..f5469514 100644 --- a/templates/workspace_reports.html +++ b/templates/workspace_reports.html @@ -19,24 +19,27 @@