Metadata-Version: 1.1
Name: django-form-utils-bootstrap3
Version: 0.1.2
Summary: Render forms with fieldsets using Bootstrap markup via django-form-utils and django-bootstrap3
Home-page: https://github.com/federicobond/django-form-utils-bootstrap3
Author: Federico Bond
Author-email: federicobond@gmail.com
License: UNKNOWN
Description: ============================
        django-form-utils-bootstrap3
        ============================
        
        .. image:: https://badge.fury.io/py/django-form-utils-bootstrap3.svg
            :target: https://badge.fury.io/py/django-form-utils-bootstrap3
            :alt: Latest PyPI version
        
        .. image:: https://travis-ci.org/federicobond/django-form-utils-bootstrap3.svg
           :target: https://travis-ci.org/federicobond/django-form-utils-bootstrap3
           :alt: Latest Travis CI build status
        
        Render forms with fieldsets using Bootstrap markup via django-form-utils and django-bootstrap3
        
        Configuration
        -------------
        
        Modify your Django project settings to include::
        
            BOOTSTRAP3 = {
                'form_renderers': {
                    'default': 'form_utils_bootstrap3.renderers.BetterFormRenderer'
                }
            }
            
        You can continue using the same ``{% bootstrap_form form %}`` tags, but they now take into account the existence of fieldsets in ``BetterForm`` instances.
        
        Installation
        ------------
        
        ::
        
            pip install django-form-utils-bootstrap3
        
        Requirements
        ------------
        
        A Django project using:
        
        - ``django-form-utils``
        - ``django-bootstrap3``
        
        Licence
        -------
        
        MIT
        
        Authors
        -------
        
        ``django-form-utils-bootstrap3`` was written by `Federico Bond <federicobond@gmail.com>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Framework :: Django
