This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathurls.py
60 lines (49 loc) · 1.81 KB
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# import django
from django.conf import settings
from django.conf.urls import include, url
# from django.conf.urls.i18n import i18n_patterns
from django.conf.urls.static import static
from django.contrib import admin
from django.contrib.sitemaps import views
from oscar.app import application
from oscar.views import handler403, handler404, handler500
from apps.gateway import urls as gateway_urls
from apps.sitemaps import base_sitemaps
admin.autodiscover()
urlpatterns = [
url(r'^', application.urls),
# Include admin as convenience. It's unsupported and only included for developers.
url(r'^admin/', include(admin.site.urls)),
# i18n URLS need to live outside of i18n_patterns scope of Oscar
# url(r'^i18n/', include(django.conf.urls.i18n)),
# include a basic sitemap
url(r'^sitemap\.xml$', views.index,
{'sitemaps': base_sitemaps}),
url(r'^sitemap-(?P<section>.+)\.xml$', views.sitemap,
{'sitemaps': base_sitemaps},
name='django.contrib.sitemaps.views.sitemap'),
# ********************************
# Custom functionality to allow dashboard users to be created
url(r'gateway/', include(gateway_urls)),
]
# Prefix Oscar URLs with language codes
"""
urlpatterns += i18n_patterns(
# Custom functionality to allow dashboard users to be created
url(r'gateway/', include(gateway_urls)),
# Oscar's normal URLs
url(r'^', application.urls),
)
"""
if settings.DEBUG:
import debug_toolbar
# Server statics and uploaded media
urlpatterns += static(settings.MEDIA_URL,
document_root=settings.MEDIA_ROOT)
# Allow error pages to be tested
urlpatterns += [
url(r'^403$', handler403),
url(r'^404$', handler404),
url(r'^500$', handler500),
url(r'^__debug__/', include(debug_toolbar.urls)),
]