What is the preferred naming convention for Django model classes?
|
1
|
|||
|
|
|
Django models are just Python classes, so the Python naming conventions detailed in PEP-8 apply. For example:
If Django fails to pluralize the class name properly when creating the corresponding table, you can easily override the pluralization by setting a custom *verbose_name_plural* field in an inner META class. For example:
|
|||
|
|
|
|
As far as I know, the idea is that the class name should be singular and should use SentenceCase with no spaces. So you'd have names like:
Then the Django admin tool knows how to pluralise them. Doesn't work so nicely for names like:
which gets pluralised as Categorys, but there we go... Apart from that, just give it a name that means something to you and succinctly sums up what the class is meant to represent. Ben |
||
|
