Guest User

Untitled

a guest
Jan 22nd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. class PostForm(forms.Form):
  2. title = forms.CharField(label='Titulo', max_length=100)
  3. slug = forms.SlugField(label='slug', max_length=120)
  4. content = MarkdownxFormField() # Estoy usando app de terceros :v
  5. img = forms.ImageField()
  6. series = forms.ModelMultipleChoiceField(queryset=List.objects.all())
  7. tags = forms.ModelMultipleChoiceField(queryset=Tag.objects.all())
Add Comment
Please, Sign In to add comment