# -*- coding: utf-8 -*- # Time : 2023/9/12 9:37 # Author : lirunsheng # User : l'r's # Software: PyCharm # File : urls.py from django.urls import path from .views import * urlpatterns = [ path("teacher/", teacher_manage), path('course/',course_selection) ]