From c14353a0a227407f41998d02d51bc71a3d9928ee Mon Sep 17 00:00:00 2001 From: Visgean Skeloru Date: Sat, 6 Jun 2015 03:10:42 +0200 Subject: [PATCH] Loading form media section --- README.rst | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 92845de..b2a758d 100644 --- a/README.rst +++ b/README.rst @@ -136,7 +136,10 @@ Alernatively you can use the included ``CKEditorWidget`` as the widget for a for admin.site.register(Post, PostAdmin) -Note that when using outside of admin panel you will have to make sure all form media is present for the editor to work. You may have to render the media like so:: +Outside of django admin +~~~~~~~~~~~~~~~~~~~~~~~ + +When you are rendering form outside of admin panel you will have to make sure that all form media is present for the editor to work. One of the way how to achieve this is following::
{{ myform.media }} @@ -144,6 +147,12 @@ Note that when using outside of admin panel you will have to make sure all form
+or you can load the media manually at it is done in demo app:: + + {% load staticfiles %} + + + Management Commands