aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/panels/templates/panel.py
AgeCommit message (Collapse)Author
2014-03-09Display main template name as template panel's subtitleMaik Hoepfel
Frequently, that's the only information required from the templates panel.
2013-12-15Properly disable instrumentation for the template panel.Aymeric Augustin
It's important to disconnect the signal at the end of a request because the toolbar now stores panels for past request. Fix #491 (presumably).
2013-12-01Review translated strings.Aymeric Augustin
- Include trailing colons inside translated strings because some languages (eg. French) need a space before the colon. - Normalize capitalization (title-style didn't seem warranted and looked weird in some cases). - Normalize quotes (not very useful, but we had a random mixture of single and double quotes). - Remove msgstr from the English po file because they're identical to msgid by definition.
2013-11-30Extract output of context processors instead of recreating it.Aymeric Augustin
Also include context processors explicitly passed to RequestContext. Fix #353.
2013-11-24Update all panels to follow the public API.Aymeric Augustin
2013-11-24Rename all panels consistently.Aymeric Augustin
Enforce absolute imports to avoid clashing with built-in package names. Thanks Jannis for his feedback.