From de462258e31cf82c432280fe7b7afe5da84263a8 Mon Sep 17 00:00:00 2001 From: Nuno Diogo da Silva Date: Wed, 14 May 2014 14:43:48 +0000 Subject: [PATCH] Set text_enabled property to True. Added text_enabled property on Video Plugin, so everybody can use it in a TextPlugin. --- djangocms_video/cms_plugins.py | 1 + 1 file changed, 1 insertion(+) diff --git a/djangocms_video/cms_plugins.py b/djangocms_video/cms_plugins.py index 399b923..98b22e7 100644 --- a/djangocms_video/cms_plugins.py +++ b/djangocms_video/cms_plugins.py @@ -12,6 +12,7 @@ class VideoPlugin(CMSPluginBase): model = Video name = _("Video") form = VideoForm + text_enabled = True render_template = "cms/plugins/video.html"