mirror of
https://github.com/Balshgit/different
synced 2025-09-12 01:20:43 +03:00
12 lines
299 B
Python
12 lines
299 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')
|
|
]
|