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