Version 3 (modified by Adrian Holovaty, 19 years ago) ( diff )

Cleaned up NewbieMistakes

NewbieMistakes

Please feel free to share the things that tripped you up when you started with Django. We'll try to improve Django's error handling to catch such mistakes in the future.

  • Referencing your view files using include() in your URLconf file (in tutorial 3, this is myproject/settings/urls/main.py) will cause the framework to try and load your views as URLconf files. This will give you cryptic errors about how there is no module 'index' (where 'index' is some function you are trying to assign as a view), or module 'foo' has no attribute 'urlpatterns'.
Note: See TracWiki for help on using the wiki.
Back to Top