Metadata-Version: 1.1
Name: bode-django-error-pages
Version: 0.0.3
Summary: This is a simple project to handle http errors responses to Bode Django Projects
Home-page: https://github.com/bodedev/django-error-pages
Author: Bode.io Dev Team
Author-email: devs@bode.io
License: MIT
Description: =======================
        Bode Django Error Pages
        =======================
        
        Objective
        ===============
        This is a simple django app to handle error pages on a Django Project. Obvious, with some Bode flavor.
        
        How to use
        ===============
        You must configure your root urls.py to handle errors.
        
        * In settings.py, add the 'bode_error_pages' to INSTALLED_APPS;
        
        * In your root urls.py file, add:
        
        .. code-block:: python
        
            from bode_error_pages.views import Error403View, Error404View, Error500View
        
            handler403 = Error403View.as_view()
            handler404 = Error404View.as_view()
            handler500 = Error500View.as_view()
        
Keywords: django error pages
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: License :: OSI Approved :: MIT License
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: Programming Language :: Python :: 3.5
