coa-django-countable-field 1.6

Creator: codyrutscher

Last updated:

Add to Cart

Description:

coadjangocountablefield 1.6

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

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})

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.