- url(r'^$', bpcms.views.document_view, {'slug': 'index'}),
- url(r'^media/(?P<path>.*)$', django.views.static.serve, {'document_root': MEDIA_ROOT, 'show_indexes': True}),
- url(r'^static/(?P<path>.*)$', django.views.static.serve, {'document_root': STATIC_ROOT, 'show_indexes': True}),
- url(r'^admin/', admin.site.urls),
- url(r'^blog/', include('blog.urls')),
- url(r'^photo/', include('photo.urls')),
+ re_path(r'^$', bpcms.views.document_view, {'slug': 'index'}),
+ re_path(r'^media/(?P<path>.*)$', django.views.static.serve, {'document_root': MEDIA_ROOT, 'show_indexes': True}),
+ re_path(r'^static/(?P<path>.*)$', django.views.static.serve, {'document_root': STATIC_ROOT, 'show_indexes': True}),
+ re_path(r'^admin/', admin.site.urls),
+ re_path(r'^blog/', include('blog.urls')),
+ re_path(r'^photo/', include('photo.urls')),