├── .github └── workflows │ ├── pylint.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── debug_toolbar_line_profiler ├── __init__.py ├── panel.py ├── signals.py └── templates │ └── debug_toolbar_line_profiler │ └── panels │ └── profiling.html └── setup.py /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/README.rst -------------------------------------------------------------------------------- /debug_toolbar_line_profiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/debug_toolbar_line_profiler/__init__.py -------------------------------------------------------------------------------- /debug_toolbar_line_profiler/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/debug_toolbar_line_profiler/panel.py -------------------------------------------------------------------------------- /debug_toolbar_line_profiler/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/debug_toolbar_line_profiler/signals.py -------------------------------------------------------------------------------- /debug_toolbar_line_profiler/templates/debug_toolbar_line_profiler/panels/profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/debug_toolbar_line_profiler/templates/debug_toolbar_line_profiler/panels/profiling.html -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikekeda/django-debug-toolbar-line-profiler/HEAD/setup.py --------------------------------------------------------------------------------