On Wed, 2010-08-04 at 12:02 -0300, André A. Santos wrote: > for exemple using MVC parttern how it works -> > > M - model (Python) > V - view (JSP) > C - controller (Django or also Django on Model tier?)
no this is not correct. django follows the Model View Template roughly: database structure - models presentation - templates business logic - views of which models and views are done in python and the presentation done with html, css, javascript etc. -- regards Kenneth Gonsalves -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

