--- id: django-debug-toolbar-template-timings version: "0.9" license: The MIT License (MIT) Copyright (c) 2013 Tom Forbes Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),… (full text in the JSON record) license_treatment: unclear maintenance: abandoned --- # django-debug-toolbar-template-timings — A django-debug-toolbar panel that shows you template rendering times for Django License: unclear · Maintenance: abandoned · Downloads: 76.2K/mo ## What it is and what it does This is a panel extension for Django Debug Toolbar that breaks down template rendering time in development. It hooks into Django's template system to measure how long each template takes to render, including templates pulled in via {% extends %} and {% include %} tags, and displays the results in the debug toolbar interface. The package is designed for Django 1.8 and earlier only—it explicitly does not work with Django 1.9 and above. It has no runtime dependencies beyond Django Debug Toolbar itself. The panel adds approximately 10% overhead during development and can be configured to ignore specific template patterns. It is no longer maintained; the last release was in February 2018. Use it for: - Identify which templates are slowest to render in a legacy Django 1.8 project during development - Distinguish between queries executed during template rendering versus queries executed elsewhere in the request - Profile nested template hierarchies to find performance bottlenecks in template inheritance chains - Debug template rendering performance in development without adding instrumentation code to templates ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. A Django Debug Toolbar panel that measures and displays the time spent rendering each template, including nested templates loaded via extends and include tags. No, unless you are actively maintaining a Django 1.8 project and need to profile template performance. The package is abandoned (last updated 2018), explicitly incompatible with Django 1.9+, and will not work with modern Django versions. If you are on a current Django version, seek an actively maintained alternative or use Django's built-in template profiling tools. ## Install pip install django-debug-toolbar-template-timings uv add django-debug-toolbar-template-timings poetry add django-debug-toolbar-template-timings ## Installing django-debug-toolbar-template-timings Before you install: Installation is straightforward with no runtime dependencies, but the package is abandoned—last release was 2018-02-24 and last commit 2018-03-06. It explicitly supports only Django 1.8 and below; Django 1.9 and above do not work. Use only in legacy Django projects still on 1.8. License in practice: Licensed under MIT. The license text is included in the fact sheet, though license_treatment is marked unclear; MIT is permissive and poses no restriction on use or modification. Quickstart: pip install django-debug-toolbar-template-timings # In settings.py: DEBUG_TOOLBAR_PANELS = [ 'template_timings_panel.panels.TemplateTimings.TemplateTimings', ] INSTALLED_APPS = [ 'template_timings_panel', ] Requires Django 1.8 or below; does not work with Django 1.9 and above. Requires django-debug-toolbar to be installed and configured. Verify before relying: - Whether the package works with any Django versions released after 1.8 despite the stated incompatibility - Current compatibility with modern Python versions beyond 3.4, which was the latest listed at release - Whether the 10% overhead estimate mentioned in the description still holds on current hardware ## Package facts - License: The MIT License (MIT) Copyright (c) 2013 Tom Forbes Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),… (full text in the JSON record) (unclear) - Python support: unspecified - Install friction: low - Maintenance: abandoned - Downloads: 76.2K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags django template performance profiling, debug toolbar template timing, django template render time measurement, template performance analysis django, django template bottleneck detection, debug toolbar template panel, django template profiler, django-debug-toolbar, legacy-only, abandoned [View on SkillFed](https://skillfed.io/packages/django-debug-toolbar-template-timings) · [View on PyPI](https://pypi.org/project/django-debug-toolbar-template-timings/)