diff --git a/apps/admin/frontend/src/components/election_manager.tsx b/apps/admin/frontend/src/components/election_manager.tsx index e309d7d0414..cc3313297d0 100644 --- a/apps/admin/frontend/src/components/election_manager.tsx +++ b/apps/admin/frontend/src/components/election_manager.tsx @@ -48,6 +48,7 @@ import { checkPin } from '../api'; import { canViewAndPrintBallots } from '../utils/can_view_and_print_ballots'; import { WriteInsAdjudicationScreen } from '../screens/write_ins_adjudication_screen'; import { TallyReportBuilder } from '../screens/tally_report_builder'; +import { BallotCountReportBuilder } from '../screens/ballot_count_report_builder'; export function ElectionManager(): JSX.Element { const { electionDefinition, configuredAt, auth, hasCardReaderAttached } = @@ -206,6 +207,9 @@ export function ElectionManager(): JSX.Element { + + + `/reports/tally-reports/batches/${batchId}`, tallyReportBuilder: `/reports/tally-reports/builder`, + ballotCountReportBuilder: `/reports/ballot-count-reports/builder`, tallyWriteInReport: '/reports/tally-reports/writein', logicAndAccuracy: '/logic-and-accuracy', testDecks: '/logic-and-accuracy/test-decks', diff --git a/apps/admin/frontend/src/screens/reports_screen.tsx b/apps/admin/frontend/src/screens/reports_screen.tsx index aedbfb0aba3..36496389693 100644 --- a/apps/admin/frontend/src/screens/reports_screen.tsx +++ b/apps/admin/frontend/src/screens/reports_screen.tsx @@ -207,6 +207,9 @@ export function ReportsScreen(): JSX.Element {

Tally Report Builder + {' '} + + Ballot Count Report Builder

{tallyResultsInfo}