├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── debug_toolbar_mongo ├── __init__.py ├── operation_tracker.py ├── panel.py ├── templates │ └── mongo-panel.html └── templatetags │ ├── __init__.py │ └── mongo_debug_tags.py ├── example ├── __init__.py ├── manage.py ├── settings.py ├── templates │ ├── base.html │ └── index.html ├── urls.py └── views.py ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/README.rst -------------------------------------------------------------------------------- /debug_toolbar_mongo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/debug_toolbar_mongo/__init__.py -------------------------------------------------------------------------------- /debug_toolbar_mongo/operation_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/debug_toolbar_mongo/operation_tracker.py -------------------------------------------------------------------------------- /debug_toolbar_mongo/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/debug_toolbar_mongo/panel.py -------------------------------------------------------------------------------- /debug_toolbar_mongo/templates/mongo-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/debug_toolbar_mongo/templates/mongo-panel.html -------------------------------------------------------------------------------- /debug_toolbar_mongo/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug_toolbar_mongo/templatetags/mongo_debug_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/debug_toolbar_mongo/templatetags/mongo_debug_tags.py -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/example/templates/base.html -------------------------------------------------------------------------------- /example/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/example/templates/index.html -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/example/urls.py -------------------------------------------------------------------------------- /example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/example/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/django-debug-toolbar-mongo/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- 1 | [tox] 2 | setupdir = . 3 | --------------------------------------------------------------------------------