-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
partial save. resolving baseline changes for validation CRUD system a…
…nd preparing for further development.
- Loading branch information
1 parent
f4bdc5c
commit 3605928
Showing
35 changed files
with
14,555 additions
and
14,148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,29 @@ | ||
'use client'; | ||
|
||
import { Card, CardContent, Typography } from '@mui/joy'; | ||
import { Box, Card, CardContent, Typography } from '@mui/joy'; | ||
import React from 'react'; | ||
import ValidationProceduresDataGrid from '@/components/datagrids/applications/validationproceduresdatagrid'; | ||
import SiteSpecificValidationsDataGrid from '@/components/datagrids/applications/sitespecificvalidationsdatagrid'; | ||
|
||
export default function ValidationsPage() { | ||
return ( | ||
<Card variant={'plain'} sx={{ width: '100%' }}> | ||
<CardContent> | ||
<Typography level={'title-lg'} fontWeight={'bold'}> | ||
Review Global Validations | ||
</Typography> | ||
<ValidationProceduresDataGrid /> | ||
</CardContent> | ||
</Card> | ||
<Box sx={{ width: '100%' }}> | ||
<Card variant={'plain'} sx={{ width: '100%' }}> | ||
<CardContent> | ||
<Typography level={'title-lg'} fontWeight={'bold'}> | ||
Review Global Validations | ||
</Typography> | ||
<ValidationProceduresDataGrid /> | ||
</CardContent> | ||
</Card> | ||
<Card variant={'plain'} sx={{ width: '100%' }}> | ||
<CardContent> | ||
<Typography level={'title-lg'} fontWeight={'bold'}> | ||
Review Site-Specific Validations | ||
</Typography> | ||
<SiteSpecificValidationsDataGrid /> | ||
</CardContent> | ||
</Card> | ||
</Box> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.