mirror of
https://github.com/Hopiu/django.git
synced 2026-04-06 08:01:07 +00:00
19 lines
403 B
HTML
19 lines
403 B
HTML
{% if debug == True %}
|
|
|
|
Have debug
|
|
|
|
First query list: {{ sql_queries|length }}
|
|
|
|
{% for obj in debug_objects.all %}{{ obj }}{% endfor %}
|
|
|
|
Second query list: {{ sql_queries|length }}
|
|
|
|
{% for obj in debug_objects.all %}{{ obj }}{% endfor %}
|
|
|
|
Third query list: {{ sql_queries|length }}
|
|
|
|
{% for obj in other_debug_objects.all %}{{ obj }}{% endfor %}
|
|
|
|
Fourth query list: {{ sql_queries|length }}
|
|
|
|
{% endif %}
|