Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Mark Jones
PLUS
Mark Jones
Courses Plus Student 760 Points

View details in Model?

I am new to django but is it the best practice to add view logic to the model?

Cheers M

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,441 Points

Hi Mark, The view logic is kept separate from the model. In typical project organization, the models are placed in the file models.py and the views go in the file views.py.

When a starting a new app within a django project, the startapp command creates these files for you:

$ django-admin startproject myproject
$ cd myproject
$ ls
manage.py  myproject
$ python manage.py startapp myapp
$ ls
app  manage.py  myproject
$ cd app
$ ls
admin.py  __init__.py  migrations  models.py  tests.py  views.py