mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-19 18:31:54 +00:00
11 lines
426 B
HTML
11 lines
426 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 %}
|