diff --git a/recopytex/dashboard/index.py b/recopytex/dashboard/index.py index 79673ba..3052671 100644 --- a/recopytex/dashboard/index.py +++ b/recopytex/dashboard/index.py @@ -5,6 +5,7 @@ from dash.dependencies import Input, Output from .app import app from .exam_analysis import app as exam_analysis from .create_exam import app as create_exam +from .student_analysis import app as student_analysis app.layout = html.Div( @@ -18,6 +19,8 @@ def display_page(pathname): return exam_analysis.layout elif pathname == "/create-exam": return create_exam.layout + elif pathname == "/students": + return student_analysis.layout else: return "404"