fix financial and certificates
This commit is contained in:
+26
@@ -508,6 +508,11 @@ const TeacherPrintRequestsPage = lazy(() =>
|
||||
const CertificatesPage = lazy(() =>
|
||||
import('./pages/certificates/CertificatesPage').then((m) => ({ default: m.CertificatesPage })),
|
||||
)
|
||||
const CertificatesAuditLogPage = lazy(() =>
|
||||
import('./pages/certificates/CertificatesAuditLogPage').then((m) => ({
|
||||
default: m.CertificatesAuditLogPage,
|
||||
})),
|
||||
)
|
||||
const StickerFormPage = lazy(() =>
|
||||
import('./pages/printables/StickerFormPage').then((m) => ({ default: m.StickerFormPage })),
|
||||
)
|
||||
@@ -622,6 +627,21 @@ const ScorePredictionPage = lazy(() =>
|
||||
default: m.ScorePredictionPage,
|
||||
})),
|
||||
)
|
||||
const TrophyProjectionPage = lazy(() =>
|
||||
import('./pages/trophy/TrophyPages').then((m) => ({
|
||||
default: m.TrophyProjectionPage,
|
||||
})),
|
||||
)
|
||||
const TrophyWinnersPage = lazy(() =>
|
||||
import('./pages/trophy/TrophyPages').then((m) => ({
|
||||
default: m.TrophyWinnersPage,
|
||||
})),
|
||||
)
|
||||
const TrophyFinalPage = lazy(() =>
|
||||
import('./pages/trophy/TrophyPages').then((m) => ({
|
||||
default: m.TrophyFinalPage,
|
||||
})),
|
||||
)
|
||||
const SlipPreviewListPage = lazy(() =>
|
||||
import('./pages/slips/SlipPreviewListPage').then((m) => ({ default: m.SlipPreviewListPage })),
|
||||
)
|
||||
@@ -1268,10 +1288,16 @@ export default function App() {
|
||||
element={<ReportCardManagementPage />}
|
||||
/>
|
||||
<Route path="administrator/certificates" element={<CertificatesPage />} />
|
||||
<Route path="administrator/certificates/log" element={<CertificatesAuditLogPage />} />
|
||||
<Route
|
||||
path="administrator/score-analysis/score-prediction"
|
||||
element={<ScorePredictionPage />}
|
||||
/>
|
||||
<Route path="administrator/trophy" element={<TrophyProjectionPage />} />
|
||||
<Route path="administrator/trophy/winners" element={<TrophyWinnersPage />} />
|
||||
<Route path="administrator/trophy/final" element={<TrophyFinalPage />} />
|
||||
<Route path="administrator/trophy_winners" element={<TrophyWinnersPage />} />
|
||||
<Route path="administrator/trophy_final" element={<TrophyFinalPage />} />
|
||||
<Route path="administrator/slips/preview" element={<SlipPreviewListPage />} />
|
||||
<Route path="administrator/slips/print" element={<LateSlipPrintPage />} />
|
||||
<Route path="slips/print" element={<LateSlipPrintPage />} />
|
||||
|
||||
Reference in New Issue
Block a user