61 lines
2.1 KiB
Python
61 lines
2.1 KiB
Python
from django.conf import settings
|
|
from django.conf.urls.i18n import i18n_patterns
|
|
from django.urls import include, path
|
|
from django.contrib import admin
|
|
|
|
from wagtail.admin import urls as wagtailadmin_urls
|
|
from wagtail import urls as wagtail_urls
|
|
from wagtail.documents import urls as wagtaildocs_urls
|
|
|
|
from search import views as search_views
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("django-admin/", admin.site.urls),
|
|
path("admin/", include(wagtailadmin_urls)),
|
|
path("documents/", include(wagtaildocs_urls)),
|
|
path("search/", search_views.search, name="search"),
|
|
path("accounts/", include("allauth.urls")),
|
|
path("accounts/profile/", views.profile, name="profile"),
|
|
path("accounts/signup/", views.signup, name="signup"),
|
|
path("i18n/", include("django.conf.urls.i18n")),
|
|
path("calendar/", views.calendar, name="calendar"),
|
|
path(
|
|
"api/calendar/events/",
|
|
views.get_calendar_events,
|
|
name="get_calendar_events",
|
|
),
|
|
path(
|
|
"api/calendar/events/<int:event_id>/",
|
|
views.get_calendar_event,
|
|
name="get_calendar_event",
|
|
),
|
|
path("event/<int:event_id>/signup/", views.event_signup, name="event_signup"),
|
|
path("event/<int:event_id>/signout/", views.event_signout, name="event_signout"),
|
|
]
|
|
|
|
|
|
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)
|
|
|
|
# browser reload urls
|
|
urlpatterns += [
|
|
path("__reload__/", include("django_browser_reload.urls")),
|
|
]
|
|
|
|
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)),
|
|
]
|