On Sun, Jan 11, 2009 at 9:03 PM, AlexiPoliski <szczecinmeis...@gmail.com> wrote:
...
> What I would like to ask is, from more experienced Django developers,
> what way do you prefer to create your applications? Models then views
> then templates? Models then templates then views? Or models then views
> AND templates concurrently.

My general approach is:

URLs first, which helps me think through the various pages users will
interact with.
Roughly sketch those pages, think about features and models needed for
reasonable normalization.
Code models
Implement views.
Implement templates.
Factor out template tags.
Performance test, tuning SQL/caching.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to