from django.conf import settings 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, RedirectView from django.views import defaults as default_views urlpatterns = [ path("", RedirectView.as_view(url=reverse_lazy('renderer:form')), name="home"), # Django Admin, use {% url 'admin:index' %} 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")), path(r'markdownx/', include('markdownx.urls')), # Your stuff: custom urls includes go here ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) if settings.DEBUG: # This allows the error pages to be debugged during development, just visit # these url in browser to see how these error pages look like. urlpatterns += [ path( "400/", default_views.bad_request, kwargs={"exception": Exception("Bad Request!")}, ), path( "403/", default_views.permission_denied, kwargs={"exception": Exception("Permission Denied")}, ), path( "404/", default_views.page_not_found, kwargs={"exception": Exception("Page not Found")}, ), path("500/", default_views.server_error), ] if "debug_toolbar" in settings.INSTALLED_APPS: import debug_toolbar urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns