I read the django tutorial, and it seems that all the viewing functions should be in a file called "views.py", and all the models are in the "models.py". I am afraid that there may be many view functions in my view.py file, and the same thing happens with models.py.
As far as I understand, django applications are correct?
Do Django applications allow us to share common functions across applications and maintain a minimum file size and file models? For example: My project may contain an application for recipes (create, update, view and search) and an application for friends, an application for comments, etc.
Can I transfer some of my view functions to another file? So, do I only have CRUD in one file?
source
share