1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
from django.contrib import admin
from django.urls import path
from django.views.generic.base import RedirectView
from django.conf.urls import include, url
from django.conf.urls.static import static
from django.conf import settings
from django_registration.backends.activation.views import RegistrationView
from rest_framework import routers
from pages.views import PageDetailView
from notes.views import NoteViewSet
from accounts.forms import UserForm
router = routers.DefaultRouter()
router.register(r'notes', NoteViewSet, basename="notes")
urlpatterns = static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
urlpatterns += [
path('admin/', admin.site.urls),
# path(r'profile/', include('accounts.urls')),
path(r'notes/', include('notes.urls')),
path(r'accounts/', include('django_registration.backends.activation.urls')),
path(r'accounts/', include('django.contrib.auth.urls')),
path(r'register/', RegistrationView.as_view(form_class=UserForm), name='django_registration_register',),
path(r'settings/', include('accounts.urls')),
path(r'', include('django_registration.backends.activation.urls')),
path(r'', include('django.contrib.auth.urls')),
path(r'', include('notes.urls')),
path(r'<slug>', PageDetailView.as_view(), name="pages"),
path(r'<path>/<slug>/', PageDetailView.as_view(), name="pages"),
path(r'api/', include(router.urls)),
path(r'api-auth/', include('rest_framework.urls', namespace='rest_framework'))
]
|