Skip to content

Instantly share code, notes, and snippets.

@andrewsmedina
Created October 14, 2011 01:35
Show Gist options
  • Save andrewsmedina/1286035 to your computer and use it in GitHub Desktop.
Save andrewsmedina/1286035 to your computer and use it in GitHub Desktop.
from tinymce.widgets import TinyMCE
class PostAdminForm(ModelForm):
conteudo = forms.CharField(widget=TinyMCE())
descricao = forms.CharField(widget=TinyMCE())
class Meta:
model = Post
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment