Currently we recommend import views from myblog and then reference views.home. Django's example uses a string 'blog.views.home' instead. I think we should do that too.
I actually reverted the string references to imports where I was able to. I think I read somewhere the import magic is being removed at some point (by Django 2.0?) so I don't think we should encourage its usage.
Currently we recommend import
views
frommyblog
and then referenceviews.home
. Django's example uses a string'blog.views.home'
instead. I think we should do that too.