Metadata-Version: 1.1
Name: django-countable-field
Version: 1.2
Summary: A simple Django form field widget to display a text field with the current word count.
Home-page: https://github.com/RoboAndie/django-countable-field
Author: Andrea Robertson
Author-email: roboandie@gmail.com
License: MIT License
Description: ===============
        Countable Field
        ===============
        
        Countable Field is a simple Django custom for widget for displaying a
        text area with the current word count displayed underneath. It can be
        set up to display the count in red when the current word count is out
        of required minimum or maximum word count for the form field.
        
        Quick start
        -----------
        
        1. Add "countable_field" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'countable_field',
            ]
        
        2. In the form, set the field's widget to be "CountableWidget", passing
        the minimum and maximum word count as additional parameters, such as::
        
            self.fields['essay_response'].widget = \
                        CountableWidget(attrs={'data-min-count': this.essay_min_length,
                                               'data-max-count': this.essay_max_length})
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
