2013-08-16 18:28:23 +04:00
|
|
|
from django.conf import settings
|
2018-05-14 10:09:24 +03:00
|
|
|
from django.urls import include, path
|
2013-08-16 18:28:23 +04:00
|
|
|
from django.conf.urls.static import static
|
2013-08-14 22:01:41 +04:00
|
|
|
from django.contrib import admin
|
2015-05-09 19:43:28 +03:00
|
|
|
from django.views.generic import TemplateView
|
2015-09-30 18:13:16 +03:00
|
|
|
from django.views import defaults as default_views
|
2013-08-14 22:01:41 +04:00
|
|
|
|
2015-05-09 19:52:57 +03:00
|
|
|
urlpatterns = [
|
2018-05-14 10:09:24 +03:00
|
|
|
path("", TemplateView.as_view(template_name="pages/home.html"), name="home"),
|
|
|
|
path(
|
|
|
|
"about/",
|
2018-04-09 01:03:29 +03:00
|
|
|
TemplateView.as_view(template_name="pages/about.html"),
|
|
|
|
name="about",
|
|
|
|
),
|
2015-10-04 01:35:27 +03:00
|
|
|
# Django Admin, use {% raw %}{% url 'admin:index' %}{% endraw %}
|
2018-05-14 10:09:24 +03:00
|
|
|
path(settings.ADMIN_URL, admin.site.urls),
|
2013-08-16 19:53:14 +04:00
|
|
|
# User management
|
2018-05-14 10:09:24 +03:00
|
|
|
path(
|
|
|
|
"users/",
|
2018-04-09 01:03:29 +03:00
|
|
|
include("{{ cookiecutter.project_slug }}.users.urls", namespace="users"),
|
|
|
|
),
|
2018-05-14 10:09:24 +03:00
|
|
|
path("accounts/", include("allauth.urls")),
|
2015-04-24 15:12:34 +03:00
|
|
|
# Your stuff: custom urls includes go here
|
2018-04-09 01:03:29 +03:00
|
|
|
] + static(
|
|
|
|
settings.MEDIA_URL, document_root=settings.MEDIA_ROOT
|
|
|
|
)
|
2015-05-09 20:31:07 +03:00
|
|
|
|
|
|
|
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 += [
|
2018-05-14 10:09:24 +03:00
|
|
|
path(
|
|
|
|
"400/",
|
2018-04-09 01:03:29 +03:00
|
|
|
default_views.bad_request,
|
|
|
|
kwargs={"exception": Exception("Bad Request!")},
|
|
|
|
),
|
2018-05-14 10:09:24 +03:00
|
|
|
path(
|
|
|
|
"403/",
|
2018-04-09 01:03:29 +03:00
|
|
|
default_views.permission_denied,
|
|
|
|
kwargs={"exception": Exception("Permission Denied")},
|
|
|
|
),
|
2018-05-14 10:09:24 +03:00
|
|
|
path(
|
|
|
|
"404/",
|
2018-04-09 01:03:29 +03:00
|
|
|
default_views.page_not_found,
|
|
|
|
kwargs={"exception": Exception("Page not Found")},
|
|
|
|
),
|
2018-05-14 10:09:24 +03:00
|
|
|
path("500/", default_views.server_error),
|
2015-05-09 20:31:07 +03:00
|
|
|
]
|
2018-04-09 01:03:29 +03:00
|
|
|
if "debug_toolbar" in settings.INSTALLED_APPS:
|
2016-09-29 19:09:49 +03:00
|
|
|
import debug_toolbar
|
2018-04-09 01:03:29 +03:00
|
|
|
|
2018-05-14 10:09:24 +03:00
|
|
|
urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns
|