Closed Loisel closed 8 years ago
Or make it a ``miwalls'' app?
You mean miviews? But then again we would like to split one big views.py into seperate files... (?)
Here an explanation of the subapplications setup: http://stackoverflow.com/questions/2670031/large-django-application-layout
I aggree with @Loisel , when stuff grows bigger we probably still want to split the views in own module-files. This would also encourage to not put everything into one function. With the current setup, all in one view file I hesitate to factor out functionality of one view into functions as they would further pollute the views.py .
I suggest we reopen when the issue comes up again, for now is fine.
I suggest to split the ever-growing views.py and create, e.g.,
views/wall_edit.py
and usefrom wall_edit import wall_edit
in the__init__.py
directory as suggested also on stack overflow.