36631-vm/core/urls.py
Flatlogic Bot 854bc3fb41 1
2025-12-03 17:23:10 +00:00

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"),
]