Metadata-Version: 1.0
Name: django-rte
Version: 0.1
Summary: Rich text editor for Django
Home-page: https://github.com/aino/django-rte
Author: Mikko Hellsing
Author-email: mikko@aino.se
License: BSD
Description: django-rte
        ==========
        A rich-text-tinymce-widget with model field for Django.
        
        Example model usage::
        
            from rte import RTEField
        
            class MyModel(models.Model):
                content = RTEField()
        
        
        Example Widget usage::
        
            from rte import TinyWidget
        
            def MyForm(forms.Form):
                content = forms.TextField(widget=TinyWidget(config={'language': 'en'}))
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Framework :: Django
