7 lines
159 B
Python
7 lines
159 B
Python
from django.urls import path
|
|
|
|
from .views import RegistrationView
|
|
|
|
urlpatterns = [
|
|
path("registration", RegistrationView.as_view(), name="registration" )
|
|
] |