update ckeditor
parent
2179021a4f
commit
ad19be5523
|
@ -1,7 +1,7 @@
|
|||
from datetime import date, timedelta
|
||||
from decimal import Decimal as D
|
||||
|
||||
from ckeditor.widgets import CKEditorWidget
|
||||
from ckeditor_uploader.widgets import CKEditorUploadingWidget
|
||||
|
||||
from selectable.forms import (
|
||||
AutoCompleteSelectMultipleWidget,
|
||||
|
@ -215,7 +215,7 @@ class ManageCampaignForm(CCDateForm, forms.ModelForm):
|
|||
'required': 'You must enter the email we should contact you at for this campaign.'
|
||||
},
|
||||
)
|
||||
work_description = forms.CharField(required=False , widget=CKEditorWidget())
|
||||
work_description = forms.CharField(required=False , widget=CKEditorUploadingWidget())
|
||||
|
||||
class Meta:
|
||||
model = Campaign
|
||||
|
|
|
@ -19,7 +19,7 @@ chardet==3.0.4
|
|||
# but having distribute in requirements starting to cause problems
|
||||
# distribute==0.6.28
|
||||
django-celery==3.1.17
|
||||
django-ckeditor==4.5.1
|
||||
django-ckeditor==5.6.1
|
||||
#django-email-change==0.2.3
|
||||
git+git://github.com/eshellman/django-email-change.git@87cd33bb7467b6203986d7d5763e2699155cedd4
|
||||
django-compat==1.0.15
|
||||
|
|
|
@ -183,6 +183,7 @@ INSTALLED_APPS = (
|
|||
'notification',
|
||||
'email_change',
|
||||
'ckeditor',
|
||||
'ckeditor_uploader',
|
||||
'storages',
|
||||
'sorl.thumbnail',
|
||||
'mptt',
|
||||
|
|
2
urls.py
2
urls.py
|
@ -3,7 +3,7 @@ from django.contrib.auth.decorators import login_required
|
|||
from django.contrib.sitemaps.views import index, sitemap
|
||||
from django.views.decorators.cache import never_cache
|
||||
|
||||
from ckeditor import views as ckedit_views
|
||||
from ckeditor_uploader import views as ckedit_views
|
||||
|
||||
from regluit.admin import site
|
||||
from regluit.core.sitemaps import WorkSitemap, PublisherSitemap
|
||||
|
|
Loading…
Reference in New Issue