Custom widget that limits the number of characters that can be entered in a textarea field
Project description
django-charsleft-widget
===
django-charsleft-widget is a custom widget that limits the number of characters that can be entered in a textarea field. The widget can also report the number of characters left before the user reaches the length limit.
[](https://pypi.python.org/pypi/django-charsleft-widget/)
[](https://pypi.python.org/pypi/django-charsleft-widget/)
[](https://pypi.python.org/pypi/django-charsleft-widget/)
## Installation
```shell
python manage.py collectstatic
```
## Usage
All you need now is to import ``CharsLeftArea`` class and override field's widget, for example :
```python
from charsleft_widget import CharsLeftArea
class Form(forms.Form):
field = forms.CharField(max_length=128, widget=CharsLeftArea)
```
Please see `example` application. This application is used to manually test the functionalities of this package. This also serves as a good example.
You need only Django 1.4 or above to run that. It might run on older versions but that is not tested.
## License
`django-charsleft-widget` is authored by [Basil Shubin](http://resume.github.io/?bashu) and released under the BSD license.
===
django-charsleft-widget is a custom widget that limits the number of characters that can be entered in a textarea field. The widget can also report the number of characters left before the user reaches the length limit.
[](https://pypi.python.org/pypi/django-charsleft-widget/)
[](https://pypi.python.org/pypi/django-charsleft-widget/)
[](https://pypi.python.org/pypi/django-charsleft-widget/)
## Installation
```shell
```
## Usage
All you need now is to import ``CharsLeftArea`` class and override field's widget, for example :
```python
from charsleft_widget import CharsLeftArea
class Form(forms.Form):
field = forms.CharField(max_length=128, widget=CharsLeftArea)
```
Please see `example` application. This application is used to manually test the functionalities of this package. This also serves as a good example.
You need only Django 1.4 or above to run that. It might run on older versions but that is not tested.
## License
`django-charsleft-widget` is authored by [Basil Shubin](http://resume.github.io/?bashu) and released under the BSD license.