diff options
| author | Mounir Messelmeni <messelmeni.mounir@gmail.com> | 2016-04-09 14:09:08 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-09 11:47:15 -0400 |
| commit | 03e1cc930c6a5fbe993fb120e4403f3dd8a7c211 (patch) | |
| tree | 45db45095ba8f50bc7c89162d5327576198e1035 /tests/context_processors/templates | |
| parent | 9e3f141701b96b6974b3386f83dc76e70a41377d (diff) | |
Fixed #26145 -- Made debug context processor return queries for all databases.
Diffstat (limited to 'tests/context_processors/templates')
| -rw-r--r-- | tests/context_processors/templates/context_processors/debug.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/context_processors/templates/context_processors/debug.html b/tests/context_processors/templates/context_processors/debug.html index 671ab81372..076fa4cd87 100644 --- a/tests/context_processors/templates/context_processors/debug.html +++ b/tests/context_processors/templates/context_processors/debug.html @@ -12,4 +12,8 @@ Second query list: {{ sql_queries|length }} Third query list: {{ sql_queries|length }} +{% for obj in other_debug_objects.all %}{{ obj }}{% endfor %} + +Fourth query list: {{ sql_queries|length }} + {% endif %} |
