from django.conf.urls import url from website.views import home_view urlpatterns = [ url(r'$^', home_view), ]