Metadata-Version: 1.0
Name: django-debug-panel
Version: 0.5.2
Summary: django-debug-toolbar in WebKit DevTools. Works fine with background Ajax requests and non-HTML responses
Home-page: https://github.com/recamshak/django-debug-panel
Author: Joël Billaud
Author-email: jbillaud@gmail.com
License: BSD
Description: ==================
        Django Debug Panel
        ==================
        
        Django Debug Toolbar inside WebKit DevTools. Works fine with background AJAX requests and non-HTML responses.
        Great for single-page applications and other AJAX intensive web applications.
        
        Installation
        ============
        
        #. Install and configure `Django Debug Toolbar <https://github.com/django-debug-toolbar/django-debug-toolbar>`_
        
        #. Install `Django Debug Panel`::
        
            pip install django-debug-panel
        
        #. Add ``debug_panel`` to your ``INSTALLED_APPS`` setting::
        
            INSTALLED_APPS = (
                # ...
                'debug_panel',
            )
        
        #. Run ``python manage.py syncdb`` to create the table that store debug information
        
        #. Install the Chrome extension Django-panel
        
Platform: UNKNOWN
