urls.py 158 B

12345678910
  1. #coding=utf-8
  2. from django.conf.urls import url
  3. from .views import *
  4. urlpatterns = (
  5. url(r'^home/$', home, {'template_name': 'dashboard/home.html'}),
  6. )