djLint/tests/source_django/debug.html

11 lines
426 B
HTML
Raw Normal View History

2021-12-14 08:57:37 +00:00
{% 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 %}