12 lines
360 B
Python
12 lines
360 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.index, name="index"),
|
|
path("dashboard", views.dashboard, name="dashboard"),
|
|
path("settings", views.settings, name='settings'),
|
|
path("documents/upload", views.upload_document, name="upload_document"),
|
|
path("auth/register", views.register, name="register"),
|
|
]
|