15 lines
371 B
Python
15 lines
371 B
Python
from django import forms
|
|
from ckeditor_uploader.widgets import CKEditorUploadingWidget
|
|
|
|
from .models import Post
|
|
|
|
class MyPostForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Post
|
|
fields = ['title','subtitle', 'image','body','slug','author']
|
|
|
|
widgets = {'body': CKEditorUploadingWidget(config_name='default')
|
|
|
|
}
|
|
|