mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 20:28:01 +03:00
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf import settings
|
|
from django.conf.urls import include, url
|
|
from django.conf.urls.static import static
|
|
from django.contrib import admin
|
|
from django.views.generic import TemplateView
|
|
|
|
urlpatterns = [
|
|
url(r'^$', TemplateView.as_view(template_name='pages/home.html'), name="home"),
|
|
url(r'^about/$', TemplateView.as_view(template_name='pages/about.html'), name="about"),
|
|
|
|
# Django Admin
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
|
|
# User management
|
|
url(r'^users/', include("{{ cookiecutter.repo_name }}.users.urls", namespace="users")),
|
|
url(r'^accounts/', include('allauth.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 += [
|
|
url(r'^400/$', 'django.views.defaults.bad_request'),
|
|
url(r'^403/$', 'django.views.defaults.permission_denied'),
|
|
url(r'^404/$', 'django.views.defaults.page_not_found'),
|
|
url(r'^500/$', 'django.views.defaults.server_error'),
|
|
]
|