-
-
Save douglasmiranda/7359868613e57aa7b945d50c81c9eda2 to your computer and use it in GitHub Desktop.
Revisions
-
jleeothon renamed this gist
Sep 14, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jleeothon created this gist
Aug 23, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ # have all your forms extend this mixin class NoLabelSuffixMixin: def __init__(self, *args, **kwargs): if 'label_suffix' not in kwargs: kwargs['label_suffix'] = '' super(NoLabelSuffixMixin, self).__init__(*args, **kwargs)