Metadata-Version: 1.1
Name: django-sb-admin
Version: 0.1.1
Summary: SB Admin dashboard Bootstrap 3 theme packaged as Django app.
Home-page: https://github.com/bluszcz/django-smb-admin
Author: Rafał Zawadzki
Author-email: bluszcz@bluszcz.net
License: Apache License version 2.0
Description: ===============
        django-sb-admin
        ===============
        
        .. image:: https://picup.it/media/smarts/b3d2cfe66830794ce35bdee04bbe74f6.jpg
        
        Introduction
        ------------
        
        Django SB Admin is a Django app which provides a Bootstrap 3 Dashboard theme:
        
        http://startbootstrap.com/template-overviews/sb-admin/
        
        SB Admin is a free to download Bootstrap admin template. This template uses the
        default Bootstrap 3 styles along with a variety of powerful jQuery plugins to 
        create a powerful framework for creating admin panels, web apps, or back-end dashboards.
        
        Installation
        ------------
        
        1. Install an app::
        
            pip install django-sb-admin
        
        2. Add "django_sb_app" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = (
                ...
                'django_sb_app',
            )
        
        3. If you want to see an example app, add following to your urls file::
        
            url(r'^django-sb-admin/', include('django_sb_admin.urls')),
        
        Usage
        -----
        
        1. Extend a base template::
        
            {% extends "django_sb_admin/base.html" %}
        
        2. Override following blocks::
        
            {% block sb_admin_sidebar %}{% endblock sb_admin_sidebar %}
            {% block sb_admin_content %}{% endblock sb_admin_content %}
        
        Conventions
        -----------
        
        Template blocks
        ===============
        
        * Names  of blocks start with *sb_admin* 
        
        License
        -------
        
        Copyright 2015 Rafał Zawadzki
        
            Licensed under the Apache License, Version 2.0 (the "License");
            you may not use this file except in compliance with the License.
            You may obtain a copy of the License at
        
            http://www.apache.org/licenses/LICENSE-2.0
        
            Unless required by applicable law or agreed to in writing, software
            distributed under the License is distributed on an "AS IS" BASIS,
            WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
            See the License for the specific language governing permissions and
            limitations under the License.
        
        SB Admin itself is licensed under the Apache License 
        https://github.com/IronSummitMedia/startbootstrap-sb-admin/blob/gh-pages/LICENSE
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
