Add basic form

This commit is contained in:
Jens Kadenbach 2019-09-05 12:20:45 +02:00
parent 6da103b148
commit 8b16fe573c
14 changed files with 424 additions and 11 deletions

View file

@ -73,6 +73,7 @@ THIRD_PARTY_APPS = [
LOCAL_APPS = [
"schickmacher.users.apps.UsersConfig",
"schickmacher.renderer.apps.RendererConfig",
# Your stuff: custom apps go here
]
# https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
@ -246,7 +247,7 @@ LOGGING = {
# django-allauth
# ------------------------------------------------------------------------------
ACCOUNT_ALLOW_REGISTRATION = env.bool("DJANGO_ACCOUNT_ALLOW_REGISTRATION", True)
ACCOUNT_ALLOW_REGISTRATION = env.bool("DJANGO_ACCOUNT_ALLOW_REGISTRATION", False)
# https://django-allauth.readthedocs.io/en/latest/configuration.html
ACCOUNT_AUTHENTICATION_METHOD = "username"
# https://django-allauth.readthedocs.io/en/latest/configuration.html

View file

@ -1,12 +1,12 @@
from django.conf import settings
from django.urls import include, path
from django.urls import include, path, reverse_lazy
from django.conf.urls.static import static
from django.contrib import admin
from django.views.generic import TemplateView
from django.views.generic import TemplateView, RedirectView
from django.views import defaults as default_views
urlpatterns = [
path("", TemplateView.as_view(template_name="pages/home.html"), name="home"),
path("", RedirectView.as_view(url=reverse_lazy('renderer:form')), name="home"),
path(
"about/", TemplateView.as_view(template_name="pages/about.html"), name="about"
),
@ -14,6 +14,7 @@ urlpatterns = [
path(settings.ADMIN_URL, admin.site.urls),
# User management
path("users/", include("schickmacher.users.urls", namespace="users")),
path("renderer/", include("schickmacher.renderer.urls", namespace="renderer")),
path("accounts/", include("allauth.urls")),
# Your stuff: custom urls includes go here
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)