2016-06-27 23:55:17 +02:00
|
|
|
"""cas 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. Import the include() function: from django.conf.urls import url, include, include
|
|
|
|
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
|
|
|
|
"""
|
2020-12-22 23:07:33 +01:00
|
|
|
|
2021-06-19 16:17:30 +02:00
|
|
|
try:
|
2020-12-22 23:07:33 +01:00
|
|
|
from django.urls import re_path
|
2021-06-19 16:17:30 +02:00
|
|
|
except ImportError:
|
|
|
|
# re_path is not available in Django 2
|
2021-06-19 17:21:20 +02:00
|
|
|
from django.conf.urls import url as re_path
|
2020-12-22 23:07:33 +01:00
|
|
|
|
2021-06-19 17:21:20 +02:00
|
|
|
from django.conf.urls import include
|
2016-06-27 23:55:17 +02:00
|
|
|
from django.contrib import admin
|
|
|
|
|
|
|
|
urlpatterns = [
|
2020-12-22 23:07:33 +01:00
|
|
|
re_path(r'^admin/', admin.site.urls),
|
|
|
|
re_path(r'^', include('cas_server.urls', namespace='cas_server')),
|
2016-06-27 23:55:17 +02:00
|
|
|
]
|