Merge pull request #80 from yakky/feature/fix_docs

Remove the HTMLField south introspection paragraph from the docs
This commit is contained in:
Iacopo Spalletti 2013-10-05 08:46:21 -07:00
commit eb3d173d5d
1 changed files with 0 additions and 10 deletions

View File

@ -91,16 +91,6 @@ And use it in your models, just like a TextField:
class MyModel(models.Model):
myfield = HTMLField(blank=True)
If you are using South migrations, you might need to add an inspection rule:
::
try:
from south.modelsinspector import add_introspection_rules
add_introspection_rules([], ['^djangocms_text_ckeditor\.fields\.HTMLField'])
except ImportError:
pass
Extending the plugin
--------------------