diff options
| author | Percy Perez-Pinedo | 2009-01-02 23:26:02 -0800 |
|---|---|---|
| committer | Percy Perez-Pinedo | 2009-01-02 23:26:02 -0800 |
| commit | 22fde8255f935dbadcd958ee04fc3f0a94a64704 (patch) | |
| tree | ebf92e5da094223db34483a96dde846b504a6326 | |
| parent | 5151e5ff87ab56352df8d6979c14542aa18b2538 (diff) | |
| download | django-debug-toolbar-22fde8255f935dbadcd958ee04fc3f0a94a64704.tar.bz2 | |
finished adding "trans" to panel template headers.html
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/headers.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/headers.html b/debug_toolbar/templates/debug_toolbar/panels/headers.html index 3ac7fd3..0a1578d 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/headers.html +++ b/debug_toolbar/templates/debug_toolbar/panels/headers.html @@ -1,9 +1,10 @@ +{% load i18n %} <h3>HTTP Headers</h3> <table> <thead> <tr> - <th>Key</th> - <th>Value</th> + <th>{% trans "Key" %}</th> + <th>{% trans "Value" %}</th> </tr> </thead> <tbody> |
