README added

This commit is contained in:
Serghei Mihai 2014-01-27 22:08:36 +01:00
parent 775b968850
commit f4cf3fb2a3
No known key found for this signature in database
GPG Key ID: 76D1C964BF2FA1AF
2 changed files with 12 additions and 1 deletions

View File

@ -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

10
README Normal file
View File

@ -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