diff options
author | Serghei MIHAI <smihai@entrouvert.com> | 2014-01-27 21:08:36 (GMT) |
---|---|---|
committer | Serghei MIHAI <smihai@entrouvert.com> | 2014-01-27 21:08:36 (GMT) |
commit | f4cf3fb2a3ead89689ee60bdc6cdf8d3311b24a4 (patch) | |
tree | b03284c19b8cc9b92b694c4e338fdffef116caec | |
parent | 775b968850963ed7126fcbd7839fb6dad61610db (diff) | |
download | cms-ajax-text-plugin-f4cf3fb2a3ead89689ee60bdc6cdf8d3311b24a4.zip cms-ajax-text-plugin-f4cf3fb2a3ead89689ee60bdc6cdf8d3311b24a4.tar.gz cms-ajax-text-plugin-f4cf3fb2a3ead89689ee60bdc6cdf8d3311b24a4.tar.bz2 |
README added
-rw-r--r-- | MANIFEST.in | 3 | ||||
-rw-r--r-- | README | 10 |
2 files changed, 12 insertions, 1 deletions
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 @@ -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 |