Metadata-Version: 2.1
Name: django-bootstrap3-form
Version: 1.1.0
Summary: Django-bootstrap3-form allows you write Django forms that work with Twitter Bootstrap 3
Home-page: https://github.com/mbraak/django-bootstrap3-form
Author: Marco Braak
Author-email: mbraak@ridethepony.nl
License: Apache License, Version 2.0
Description: # Django Bootstrap 3 form
        
        [![Build Status](https://travis-ci.org/mbraak/django-bootstrap3-form.svg?branch=master)](https://travis-ci.org/mbraak/django-bootstrap3-form) [![Version](https://badge.fury.io/py/django-bootstrap3-form.svg)](https://pypi.python.org/pypi/django-bootstrap3-form/)
        
        [![Coverage Status](https://img.shields.io/coveralls/mbraak/django-bootstrap3-form.svg)](https://coveralls.io/r/mbraak/django-bootstrap3-form?branch=master)
        [![Requirements Status](https://requires.io/github/mbraak/django-bootstrap3-form/requirements.svg?branch=master)](https://requires.io/github/mbraak/django-bootstrap3-form/requirements/?branch=master)
        
        [![License](https://img.shields.io/pypi/l/django-bootstrap3-form.svg)](https://pypi.python.org/pypi/django-bootstrap3-form/)
        
        **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.
        
        ```python
        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)
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Description-Content-Type: text/markdown
