mirror of
https://github.com/Balshgit/different
synced 2025-09-11 02:50:41 +03:00
11 lines
298 B
Python
11 lines
298 B
Python
from django.urls import path, include
|
|
from .views import dashboard, RegisterUser
|
|
|
|
app_name = 'accounts'
|
|
|
|
urlpatterns = [
|
|
path('', include("django.contrib.auth.urls")),
|
|
path('dashboard/', dashboard, name='dashboard'),
|
|
path('registration/', RegisterUser.as_view(), name='registration')
|
|
]
|