-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurls.py
54 lines (46 loc) · 1.88 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
from django.conf import settings
from django.urls import path, include, re_path
from django.contrib import admin
from django.views.generic import TemplateView
from pages import views as page_views
from wagtail.admin import urls as wagtailadmin_urls
from wagtail import urls as wagtail_urls
from wagtail.documents import urls as wagtaildocs_urls
from wagtail.contrib.sitemaps.views import sitemap
urlpatterns = [
path("django-admin/", admin.site.urls),
re_path(
r"^custom-web-projects/",
TemplateView.as_view(template_name="pages/custom_web_projects.html"),
),
re_path(r"^mosque/",
TemplateView.as_view(template_name="pages/mosque.html")),
re_path(
r"^robots\.txt",
TemplateView.as_view(
template_name="robots.txt", content_type="text/plain"
),
),
re_path(r"^sales/$", page_views.sales_inquiry_form),
re_path(r"^sales/inquiry/", page_views.sales_inquiry_hubspot_form),
re_path(r"^sitemap\.xml$", sitemap),
re_path(r"^admin/", include(wagtailadmin_urls)),
re_path(r"^documents/", include(wagtaildocs_urls)),
re_path(r"", include(wagtail_urls)),
]
if settings.DEBUG:
from django.conf.urls.static import static
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
# Serve static and media files from development server
urlpatterns += staticfiles_urlpatterns()
urlpatterns += static(settings.MEDIA_URL,
document_root=settings.MEDIA_ROOT)
urlpatterns = urlpatterns + [
# For anything not caught by a more specific rule above, hand over to
# Wagtail's page serving mechanism. This should be the last pattern in
# the list:
path("", include(wagtail_urls)),
# Alternatively, if you want Wagtail pages to be served from a subpath
# of your site, rather than the site root:
# path("pages/", include(wagtail_urls)),
]