Metadata-Version: 1.1
Name: django-outbox-base-layout
Version: 1.2
Summary: A simple Django app with a base layout for new projects of Outbox Company.
Home-page: https://www.outboxsistemas.com/
Author: Edson de Lima Cosme Junior
Author-email: edson.junior@outboxsistemas.com
License: BSD License
Description: =====
        Outbox Base Layout
        =====
        
        Outbox Base Layout is a simple Django app with a base layout for new
        projects of Outbox Company. The app implements the sbadmin2 template
        for Django projects.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "outbox_base_layout" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'outbox_base_layout',
            ]
        
        2. Include the base layout examples URLconf in your project urls.py like this::
        
            path('examples/', include('outbox_base_layout.urls')),
        
        3. Start the development server and visit http://127.0.0.1:8000/examples/.
        
        4. Visit http://127.0.0.1:8000/examples/ to view the base.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
