Metadata-Version: 2.1
Name: django-bootstrap3-form
Version: 1.0.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.0 - 3.0. Also tested with Python 3.6 - 3.7.
        
        Note that version 0.7.0 also supports Django 1.11.
        
        ```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.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
