from django.conf.urls import url from .views import page_view urlpatterns = [ url(r'^(?P.*)', page_view, name='page'), ]