iamkonstantin/iamkonstantin_web/urls.py

59 lines
2.2 KiB
Python
Raw Normal View History

2024-02-29 18:51:43 +01:00
from django.conf import settings
2024-11-23 14:26:14 +01:00
from django.conf.urls.i18n import i18n_patterns
2024-02-29 18:51:43 +01:00
from django.urls import include, path
from django.contrib import admin
2024-03-29 18:43:38 +01:00
from django.views.generic.base import TemplateView
2024-02-29 18:51:43 +01:00
from wagtail.admin import urls as wagtailadmin_urls
from wagtail import urls as wagtail_urls
from wagtail.documents import urls as wagtaildocs_urls
2024-03-26 18:08:42 +01:00
from blog.feeds import RssBlogFeed
2024-11-23 14:59:51 +01:00
from iamkonstantin_web.api import api_router
2024-10-07 09:26:43 +02:00
from newsletter import views as newsletter_views
2024-02-29 18:51:43 +01:00
from search import views as search_views
2024-03-26 18:20:20 +01:00
from wagtail.contrib.sitemaps.views import sitemap
2024-04-05 18:46:44 +02:00
from base.views import KeyView
2024-02-29 18:51:43 +01:00
urlpatterns = [
path("django-admin/", admin.site.urls),
path("admin/", include(wagtailadmin_urls)),
path("documents/", include(wagtaildocs_urls)),
path("search/", search_views.search, name="search"),
2024-03-26 18:08:42 +01:00
path("blog/feed/", RssBlogFeed(), name="blog_feed"),
2024-03-26 18:20:20 +01:00
path('sitemap.xml', sitemap),
2024-04-05 18:46:44 +02:00
path('robots.txt', TemplateView.as_view(template_name="robots.txt", content_type="text/plain")),
2024-10-07 09:26:43 +02:00
path('<str:key>.txt', KeyView.as_view()),
path('newsletter/thanks', newsletter_views.thanks, name='thanks')
2024-02-29 18:51:43 +01:00
]
2024-11-23 14:59:51 +01:00
urlpatterns += [
path('api/v2/', api_router.urls),
]
2024-11-23 14:26:14 +01:00
# Translatable URLs
# These will be available under a language code prefix. For example /en/search/
urlpatterns += i18n_patterns(
path("", include(wagtail_urls)),
prefix_default_language=False,
)
2024-02-29 18:51:43 +01:00
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)
2024-03-15 07:26:20 +01:00
urlpatterns += path("__reload__/", include("django_browser_reload.urls")),
2024-02-29 18:51:43 +01:00
2024-11-23 14:59:51 +01:00
# 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)),
# ]