django-bootstrap3-form

Django-bootstrap3-form allows you write Django forms that work with Twitter Bootstrap 3


License
Apache-2.0
Install
pip install django-bootstrap3-form==1.1.0

Documentation

Django Bootstrap 3 form

Build Status Version

Coverage Status Requirements Status

License

Django-bootstrap3-form allows you write Django forms that work with Twitter Bootstrap 3.

It supports Django 2.2 - 3.1. Also tested with Python 3.6 - 3.8.

Older versions: Version 1.0 supports Django 2.0 and 2.2. Version 0.7 supports Django 1.11 and Python 2.7.

import django_bootstrap3_form

class ExampleForm(django_bootstrap3_form.BootstrapForm):
	username = django_bootstrap3_form.CharField()
	password = django_bootstrap3_form.CharField(widget=django_bootstrap3_form.PasswordInput)