initial commit
This commit is contained in:
12
cabinet/urls.py
Normal file
12
cabinet/urls.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from django.contrib.auth.views import LogoutView
|
||||
from django.urls import path, include
|
||||
|
||||
from cabinet.views import CabinetIndexView, LoginView
|
||||
|
||||
app_name = 'cabinet'
|
||||
urlpatterns = [
|
||||
path('', CabinetIndexView.as_view(), name='index'),
|
||||
path('login/', LoginView.as_view(), name='login'),
|
||||
path('logout/', LogoutView.as_view(), name='logout'),
|
||||
path('feeds/', include('feeds.urls', namespace='feeds')),
|
||||
]
|
Reference in New Issue
Block a user