Metadata-Version: 1.1
Name: django-bootstrap-ui
Version: 0.1-alpha2
Summary: This aims to be a powerful Django app to ease the integration of the popular Bootstrap UI framework (http://getbootstrap.com).
Home-page: https://github.com/timorieber/django-bootstrap-ui
Author: Timo Rieber
Author-email: dev@timorieber.de
License: ISC License (ISCL)
Description: ===================
        django-bootstrap-ui
        ===================
        
        This aims to be a powerful Django app to ease the integration of the
        popular Bootstrap UI framework (http://getbootstrap.com).
        
        .. image:: https://img.shields.io/travis/timorieber/django-bootstrap-ui.svg
            :target: https://travis-ci.org/timorieber/django-bootstrap-ui
        
        .. image:: https://img.shields.io/coveralls/timorieber/django-bootstrap-ui/master.svg
            :target: https://coveralls.io/r/timorieber/django-bootstrap-ui?branch=master
        
        .. image:: https://img.shields.io/pypi/v/django-bootstrap-ui.svg
            :target: https://pypi.python.org/pypi/django-bootstrap-ui
        
        .. image:: https://img.shields.io/pypi/l/django-bootstrap-ui.svg
            :target: https://pypi.python.org/pypi/django-bootstrap-ui
        
        Quick start
        -----------
        
        1. Add ``bootstrap_ui`` to your ``INSTALLED_APPS`` setting::
        
            INSTALLED_APPS = (
                ...
                'bootstrap_ui',
                ...
            )
        
        2. Load ``bootstrap_ui_tags`` in your template::
        
            {% load bootstrap_ui_tags %}
        
        3. Use bootstrap components through intuitive template tags::
        
            {% listgroup %}
                {% listgroupitem %}
                    Your raw text.
                {% endlistgroupitem %}
                {% listgroupitem %}
                    You may also use a {{ context_variable }}.
                {% endlistgroupitem %}
            {% endlistgroup %}
        
        4. Some bootstrap components support different html tags, to change the default add a parameter::
        
            {% listgroup use_tag="div" %}
                ...
                Your list group content goes here.
                ...
            {% endlistgroup %}
        
        Supported bootstrap components
        ------------------------------
        
        * List group (http://getbootstrap.com/components/#list-group)
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.7
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
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.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
