Skip to content

Commit 2359b2e

Browse files
committed
Actual show the number of used static files in panel title.
1 parent 184992f commit 2359b2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debug_toolbar/panels/staticfiles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class StaticFilesPanel(panels.Panel):
7575

7676
@property
7777
def title(self):
78-
return (_("Static files (%(num_found)s found)") %
78+
return (_("Static files (%(num_found)s found, %(num_used)s used)") %
7979
{'num_found': self.num_found, 'num_used': self.num_used})
8080

8181
def __init__(self, *args, **kwargs):

0 commit comments

Comments
 (0)