added a basic app using the UserCreationForm to create new user at /accounts/signup/ change outside of the app are: -added signup to INSTALLED_APPS in /photo21/settings.py -added accounts/signup/ to path in /photo21/urls.py should extend UserCreationForm to have field for email and maybe first/last names, except if we want the user to add that themselves later
37 lines
1.5 KiB
Python
37 lines
1.5 KiB
Python
"""photo21 URL Configuration
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
https://docs.djangoproject.com/en/2.2/topics/http/urls/
|
|
Examples:
|
|
Function views
|
|
1. Add an import: from my_app import views
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
Class-based views
|
|
1. Add an import: from other_app.views import Home
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
Including another URLconf
|
|
1. Import the include() function: from django.urls import include, path
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
"""
|
|
from django.contrib import admin
|
|
from django.urls import include, path
|
|
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
from .views import IndexView
|
|
|
|
# photologue_custom overrides some photologue patterns
|
|
urlpatterns = [
|
|
path('', IndexView.as_view(), name='index'),
|
|
path('photologue/', include('photologue_custom.urls')),
|
|
path('photologue/', include('photologue.urls', namespace='photologue')),
|
|
path('accounts/', include('django.contrib.auth.urls')),
|
|
path('i18n/', include('django.conf.urls.i18n')),
|
|
path('admin/', admin.site.urls),
|
|
path('admin/doc/', include('django.contrib.admindocs.urls')),
|
|
path('accounts/signup/', include('signup.urls'))
|
|
]
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|