diff --git a/MANIFEST.in b/MANIFEST.in index eb98627..01428bb 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ include MANIFEST.in include VERSION -recursive-include cms_ajax_text_plugin/templates *.html +include README +recursive-include cms_ajax_text_plugin/templates/ *.html diff --git a/README b/README new file mode 100644 index 0000000..35118d1 --- /dev/null +++ b/README @@ -0,0 +1,10 @@ +This a Django CMS Text plugin loading asynchronously its content. + +To use it just declare "cms_ajax_text_plugin" in your INSTALLED_APPS and add to +your urls.py the following: + + urlpatterns += patterns('', + url('^plugin/', include('cms_ajax_text_plugin.urls')), + ) + +in order to allow the plugin view to be called by AJAX \ No newline at end of file