9 lines
303 B
Python
9 lines
303 B
Python
from django.urls import path
|
|
|
|
from .views import home, career_explorer_view, student_profile_view
|
|
urlpatterns = [
|
|
path("", home, name="home"),
|
|
path("explore/", career_explorer_view, name="career_explorer"), # New URL pattern
|
|
path("profile/", student_profile_view, name="student_profile"),
|
|
]
|