Version 2 (modified by mrtact@…, 19 years ago) ( diff )

--

NewbieMistakes

Please feel free to share the things that tripped you up when you started with Django. Specifically, mistakes that were simple (e.g. syntax errors) but caused things to blow up in a confusing or frightening way . . . and due to a lack of deep understanding of what was going on under the hood, took you an hour of debugging the framework to figure out.

And now, the list

  • 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'.
  • When assigning the admin attribute to your model, forgetting to add the parens to meta.Admin causes an error like AttributeError: class Admin has no attribute 'ordering' . You set your model's admin attribute equal to the class object instead of an instance.
Note: See TracWiki for help on using the wiki.
Back to Top