When creating a project in Django, I get this structure:
mysite/
manage.py
mysite/
__init__.py
settings.py
urls.py
wsgi.py
Is it correct to add view.py
, forms.py
, models.py
, etc., inside the inner directory mysite
? I have seen they use it as default but they create a new app for that which already contains some extra files.