blob: b45430bffd6991e38cd2745b61a99e821b09424d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
from django.contrib.auth.views import logout_then_login
from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
path("dashboard/", views.dashboard, name="dashboard"),
path("logout-then-login/", logout_then_login, name="logout-the-login"),
path("profile/", views.profile, name="profile"),
]
|