Re: Best practice question: subclassing external app components

2009-02-09 Thread bruno desthuilliers
On 9 fév, 00:35, zinckiwi wrote: > Hi folks, > > I'm just starting to play with django-registration and I want to > subclass the RegistrationForm for a couple of cosmetic tweaks > (capitalising the labels on the fields -- there may be a simpler way > to do this, but indulge

Re: Best practice question: subclassing external app components

2009-02-09 Thread felix
in my own setup I have a few apps where it might go: globalapp - a collection of misc snippets, classes and utilities that I use on every project I work on {website} - the specific website if this code will not be reused accountz - views, forms related to my own styles of login utils,

Best practice question: subclassing external app components

2009-02-08 Thread zinckiwi
Hi folks, I'm just starting to play with django-registration and I want to subclass the RegistrationForm for a couple of cosmetic tweaks (capitalising the labels on the fields -- there may be a simpler way to do this, but indulge me for the purposes of this question). I understand that