JourneyJoker/partners/urls.py

10 lines
No EOL
277 B
Python

from django.urls import path
from .views import PartnerRegistrationView, PartnerProfileView
app_name = "partners"
urlpatterns = [
path('register/', PartnerRegistrationView.as_view(), name="register"),
path('profile/', PartnerProfileView.as_view(), name="profile"),
]