from django.urls import path from .views import ( CreateUser, CreateUserProfile, CreateSchool, EditSchool, ) app_name = 'users' urlpatterns = [ path( 'user/new', CreateUser.as_view(), name='new-user' ), path( 'user//set_school', CreateUserProfile.as_view(), name='create-userprofile' ), path( 'school/new', CreateSchool.as_view(), name='new-school' ), path( 'school//edit', EditSchool.as_view(), name='edit-school' ), ]