|
1 | | -"""django-mako URL Configuration |
2 | | -
|
3 | | -The `urlpatterns` list routes URLs to views. For more information please see: |
4 | | - https://docs.djangoproject.com/en/1.11/topics/http/urls/ |
5 | | -Examples: |
6 | | -Function views |
7 | | - 1. Add an import: from my_app import views |
8 | | - 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') |
9 | | -Class-based views |
10 | | - 1. Add an import: from other_app.views import Home |
11 | | - 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') |
12 | | -Including another URLconf |
13 | | - 1. Import the include() function: from django.conf.urls import url, include |
14 | | - 2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls')) |
15 | | -""" |
16 | | -from django.conf.urls import url |
| 1 | +from django.urls import re_path |
17 | 2 |
|
18 | 3 | from niceapp import views |
19 | 4 |
|
20 | 5 | urlpatterns = [ |
21 | | - url(r'^(?P<engine>django|mako)?$', views.function_based_view), |
22 | | - url(r'^class/(?P<engine>django|mako)?$', |
23 | | - views.ClassBasedView.as_view(), |
24 | | - name='CBV'), |
| 6 | + re_path(r'^(?P<engine>django|mako)?$', views.function_based_view), |
| 7 | + re_path(r'^class/(?P<engine>django|mako)?$', |
| 8 | + views.ClassBasedView.as_view(), |
| 9 | + name='CBV'), |
25 | 10 | ] |
0 commit comments