Skip to content

Commit

Permalink
feat: add all dashboard export
Browse files Browse the repository at this point in the history
  • Loading branch information
rafasdc committed Dec 4, 2024
1 parent 10c6a50 commit 6687531
Show file tree
Hide file tree
Showing 9 changed files with 1,243 additions and 5 deletions.
90 changes: 90 additions & 0 deletions app/backend/lib/dashboard/column_options.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
import { Columns } from 'write-excel-file';

const columnOptions: Columns = [
// column 1
{},
// column 2
{ width: 12 },
// column 3
{},
// column 4
{},
// column 5
{},
// column 6 (internal status)
{ width: 20 },
// column 7 (external status)
{ width: 20 },
// column 8
{},
// column 9 (title)
{ width: 20 },
// column 10
{},
// column 11
{},
// column 12
{},
// column 13 (Federal Funding Source)
{ width: 20 },
// column 14
{},
// column 15
{},
// column 16
{},
// column 17
{},
// column 18
{},
// column 19
{},
// column 20
{},
// column 21
{},
// column 22
{},
// column 23
{},
// column 24
{},
// column 25
{},
// column 26
{},
// column 27
{},
// column 28
{},
// column 29
{},
// column 30
{},
// column 31 (bc funding)
{ width: 24 },
// column 32 (applicant amount)
{ width: 24 },
// column 33 (other funds requested)
{ width: 24 },
// column 34 (total fnha funding)
{ width: 24 },
// column 35 (total budget)
{ width: 24 },
// column 36
{},
// column 37
{},
// column 38
{},
// column 39
{},
// column 40
{},
// column 41
{},
// column 42
{},
];

export default columnOptions;
Loading

0 comments on commit 6687531

Please sign in to comment.