Re: Django Development Process

2009-01-12 Thread Lee Braiden
On Sun, 2009-01-11 at 19:03 -0800, AlexiPoliski 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 concurren

Re: Django Development Process

2009-01-11 Thread steve
You'll find the perfect way for you to approach each stage of it I'm sure. I'm always into figuring out Use Cases the very first thing. I like to establish at least 4 or 5 different major tasks that a user would need/want to do, and then get these out of my head into a concrete form (currently

Re: Django Development Process

2009-01-11 Thread Alex Kowalczyk
2009/1/12 Jeremy Dunck > 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.

Re: Django Development Process

2009-01-11 Thread Jeremy Dunck
On Sun, Jan 11, 2009 at 9:03 PM, AlexiPoliski 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 concurr