Metadata-Version: 1.1
Name: djbootstrap
Version: 2.3.2
Summary: Kickstart your django app with twitter bootstrap.
Home-page: https://github.com/madisona/djbootstrap
Author: Aaron Madison
Author-email: UNKNOWN
License: UNKNOWN
Description: 
        DjBootstrap
        ===========
        
        Helps kickstart your django app using the awesome twitter bootstrap library.
        
        http://twitter.github.com/bootstrap/
        
        INSTALLATION
        ------------
        
        ::
        
            >>> pip install djbootstrap
        
        Just add djbootstrap to your INSTALLED_APPS
        
        PROVIDES
        --------
        **base.html template**
        
        Use it if you feel like it. Just sets up some boilerplate.
        
        **bootstrapped_form template tag**
        
        Renders your form all pretty like using bootstrapped_form.html the bootstrap
        css classes and such.
        
        ::
        
            {% load bootstrap_tags %}
            {% bootstrapped_form my_form %}
        
        **notification_center.html**
        
        A simple template snipped to render django's messages output using bootstrap alerts
        
        **Activate Template Tag**
        
        Tells you if the page you're on is the active page.
        Requires 'request' context processor
        
        USAGE: ::
        
            {% url namespace:some_url as the_url %}
            <li class="{% activate the_url %}"><a href="{{ the_url }}"></li>
        
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
