2013-08-16 18:28:23 +04:00
|
|
|
from django.conf import settings
|
|
|
|
from django.conf.urls.static import static
|
2013-08-14 22:01:41 +04:00
|
|
|
from django.contrib import admin
|
2020-03-25 04:42:28 +03:00
|
|
|
{%- if cookiecutter.use_async == 'y' %}
|
|
|
|
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
|
|
|
{%- endif %}
|
2020-03-03 22:53:15 +03:00
|
|
|
from django.urls import include, path
|
2015-09-30 18:13:16 +03:00
|
|
|
from django.views import defaults as default_views
|
2020-03-03 22:53:15 +03:00
|
|
|
from django.views.generic import TemplateView
|
|
|
|
{%- if cookiecutter.use_drf == 'y' %}
|
2019-09-13 09:43:12 +03:00
|
|
|
from rest_framework.authtoken.views import obtain_auth_token
|
|
|
|
{%- endif %}
|
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(
|
2019-03-18 20:49:43 +03:00
|
|
|
"about/", TemplateView.as_view(template_name="pages/about.html"), name="about"
|
2018-04-09 01:03:29 +03:00
|
|
|
),
|
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
|
2019-03-18 20:49:43 +03:00
|
|
|
path("users/", 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
|
2019-03-18 20:49:43 +03:00
|
|
|
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
2020-03-25 04:42:28 +03:00
|
|
|
{%- if cookiecutter.use_async == 'y' %}
|
2020-03-25 03:59:28 +03:00
|
|
|
if settings.DEBUG:
|
2020-03-25 04:42:28 +03:00
|
|
|
# Static file serving when using Gunicorn + Uvicorn for local web socket development
|
2020-03-25 03:59:28 +03:00
|
|
|
urlpatterns += staticfiles_urlpatterns()
|
2020-03-25 04:42:28 +03:00
|
|
|
{%- endif %}
|
|
|
|
{% if cookiecutter.use_drf == 'y' %}
|
2019-09-13 09:43:12 +03:00
|
|
|
# API URLS
|
|
|
|
urlpatterns += [
|
|
|
|
# API base url
|
2020-01-23 18:04:30 +03:00
|
|
|
path("api/", include("config.api_router")),
|
2019-09-13 09:43:12 +03:00
|
|
|
# DRF auth token
|
2020-01-23 18:04:30 +03:00
|
|
|
path("auth-token/", obtain_auth_token),
|
|
|
|
]
|
2019-09-13 09:43:12 +03:00
|
|
|
{%- endif %}
|
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
|