| Issue 1: | Break models.py into separate files | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Currently, all models are in a single file. This is obviously not good, and needs to change. Specific directory structure of the new files does not matter, but each model should have it's own file. Some models also have an associated input form, and that should be in the same file as the model.
Oct 1, 2012
Project Member
#1
m...@umbc.edu
Oct 1, 2012
You're right, I think that convention will flow a lot better with Django, new action item is to split each model into an app, and each model and form into it's own model.py and forms.py files. Static items will also be broken into a global settings file. |