Replace deprecated functions
This commit is contained in:
+13
-28
@@ -1,23 +1,6 @@
|
||||
"""sikweb URL Configuration
|
||||
|
||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||
https://docs.djangoproject.com/en/1.9/topics/http/urls/
|
||||
Examples:
|
||||
Function views
|
||||
1. Add an import: from my_app import views
|
||||
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
|
||||
Class-based views
|
||||
1. Add an import: from other_app.views import Home
|
||||
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
|
||||
Including another URLconf
|
||||
1. Add an import: from blog import urls as blog_urls
|
||||
2. Import the include() function: from django.conf.urls import url, include
|
||||
3. Add a URL to urlpatterns: url(r'^blog/', include(blog_urls))
|
||||
"""
|
||||
from django.conf.urls import url
|
||||
from django.urls import re_path, include
|
||||
from django.contrib import admin
|
||||
from django.views.static import serve as static_serve
|
||||
from django.conf.urls import include
|
||||
from django.conf.urls.static import static
|
||||
from django.conf import settings
|
||||
from django.contrib.staticfiles import views as static_views
|
||||
@@ -27,18 +10,20 @@ favicon_view = RedirectView.as_view(url="static/img/favicon.png", permanent=True
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
url(r"", include("webapp.urls")),
|
||||
url(r"^members/", include("members.urls")),
|
||||
url(r"^infoscreen/", include("infoscreen.urls")),
|
||||
url(r"^kaehmy/", include("kaehmy.urls")),
|
||||
url(r"^ohlhafv/", include("ohlhafv.urls")),
|
||||
re_path(r"", include("webapp.urls")),
|
||||
re_path(r"^members/", include("members.urls")),
|
||||
re_path(r"^infoscreen/", include("infoscreen.urls")),
|
||||
re_path(r"^kaehmy/", include("kaehmy.urls")),
|
||||
re_path(r"^ohlhafv/", include("ohlhafv.urls")),
|
||||
# favourite icon
|
||||
url(r"^favicon\.ico$", favicon_view),
|
||||
re_path(r"^favicon\.ico$", favicon_view),
|
||||
# admin
|
||||
url(r"^admin/", admin.site.urls),
|
||||
re_path(r"^admin/", admin.site.urls),
|
||||
# i18n default view for changing the active language
|
||||
url(r"^i18n/", include("django.conf.urls.i18n")),
|
||||
re_path(r"^i18n/", include("django.conf.urls.i18n")),
|
||||
# staticfiles default view for static files in development
|
||||
url(r"^static/(?P<path>.*)$", static_views.serve),
|
||||
url(r"^media/(?P<path>.*)$", static_serve, {"document_root": settings.MEDIA_ROOT}),
|
||||
re_path(r"^static/(?P<path>.*)$", static_views.serve),
|
||||
re_path(
|
||||
r"^media/(?P<path>.*)$", static_serve, {"document_root": settings.MEDIA_ROOT}
|
||||
),
|
||||
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
||||
|
||||
Reference in New Issue
Block a user