Skip to content

Instantly share code, notes, and snippets.

@vbmendes
Created June 29, 2010 12:50
Show Gist options
  • Save vbmendes/457156 to your computer and use it in GitHub Desktop.
Save vbmendes/457156 to your computer and use it in GitHub Desktop.
class NomeDoForm(forms.ModelForm):
class Meta:
model = NomeDoModel
def __init__(self, *args, **kwargs):
super(NomeDoForm, self).__init__(*args, **kwargs)
self.fields['nome_do_campo'].widget.attrs['class'] = 'mceClass'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment