diff options
| author | Alex Gaynor | 2009-09-10 11:14:27 -0700 | 
|---|---|---|
| committer | Alex Gaynor | 2009-09-10 11:14:27 -0700 | 
| commit | d6190014abd950f032755fde33ce32c30fc0e754 (patch) | |
| tree | f070f1275da92ea9efc545ef049c798499286412 /debug_toolbar/panels/cache.py | |
| parent | 89a0b38316e1822bf22a4f013a6bb12f9db585b8 (diff) | |
| parent | 608e3ce3e79e3c2d073cf72d1071b71b324485ee (diff) | |
| download | django-debug-toolbar-d6190014abd950f032755fde33ce32c30fc0e754.tar.bz2 | |
handle merge conflicts
Diffstat (limited to 'debug_toolbar/panels/cache.py')
| -rw-r--r-- | debug_toolbar/panels/cache.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/debug_toolbar/panels/cache.py b/debug_toolbar/panels/cache.py index 613d4d9..a05d3cc 100644 --- a/debug_toolbar/panels/cache.py +++ b/debug_toolbar/panels/cache.py @@ -87,9 +87,12 @@ class CacheDebugPanel(DebugPanel):              self.cache = CacheStatTracker(cache.cache)              cache.cache = self.cache -    def title(self): +    def nav_title(self):          return 'Cache: %.2fms' % self.cache.total_time +    def title(self): +        return 'Cache Usage' +      def url(self):          return '' | 
