diff --git a/digitaleagentur/__pycache__/settings.cpython-38.pyc b/digitaleagentur/__pycache__/settings.cpython-38.pyc index 5fb0434..e5e43c1 100644 Binary files a/digitaleagentur/__pycache__/settings.cpython-38.pyc and b/digitaleagentur/__pycache__/settings.cpython-38.pyc differ diff --git a/news/templates/news/news_addnews.html b/news/templates/news/news_addnews.html index 184343f..f2c7377 100644 --- a/news/templates/news/news_addnews.html +++ b/news/templates/news/news_addnews.html @@ -20,7 +20,8 @@ $(document).ready(function() { $('#id_content').summernote({ height: 400, - lang: "de-DE" + lang: "de-DE", + disableDragAndDrop: true }); }); diff --git a/news/templates/news/news_update.html b/news/templates/news/news_update.html index 758d90d..4b15d3e 100644 --- a/news/templates/news/news_update.html +++ b/news/templates/news/news_update.html @@ -18,7 +18,8 @@ $(document).ready(function() { $('#id_content').summernote({ height: 400, - lang: "de-DE" + lang: "de-DE", + disableDragAndDrop: true }); }); diff --git a/standards/templates/standards/standards_add.html b/standards/templates/standards/standards_add.html index 1a9a878..5265a8d 100644 --- a/standards/templates/standards/standards_add.html +++ b/standards/templates/standards/standards_add.html @@ -692,7 +692,8 @@ $(document).ready(function() { $('#id_content').summernote({ height: 400, - lang: "de-DE" + lang: "de-DE", + disableDragAndDrop: true }); }); diff --git a/standards/templates/standards/standards_update.html b/standards/templates/standards/standards_update.html index 8393409..4176b00 100644 --- a/standards/templates/standards/standards_update.html +++ b/standards/templates/standards/standards_update.html @@ -827,8 +827,8 @@ $("#id_area").change(function () { $(document).ready(function() { $('#id_content').summernote({ lang: "de-DE", - height: 400 - + height: 400, + disableDragAndDrop: true }); });