sql_explain.html 813 B

1234567891011121314151617181920212223242526272829303132333435
  1. {% load i18n %}
  2. <div class="djDebugPanelTitle">
  3. <a class="djDebugClose djDebugBack" href="">{% trans "Back" %}</a>
  4. <h3>{% trans "SQL Explained" %}</h3>
  5. </div>
  6. <div class="djDebugPanelContent">
  7. <div class="scroll">
  8. <dl>
  9. <dt>{% trans "Executed SQL" %}</dt>
  10. <dd>{{ sql|safe }}</dd>
  11. <dt>{% trans "Time" %}</dt>
  12. <dd>{{ duration }} ms</dd>
  13. <dt>{% trans "Database" %}</dt>
  14. <dd>{{ alias }}</dd>
  15. </dl>
  16. <table class="djSqlExplain">
  17. <thead>
  18. <tr>
  19. {% for h in headers %}
  20. <th>{{ h|upper }}</th>
  21. {% endfor %}
  22. </tr>
  23. </thead>
  24. <tbody>
  25. {% for row in result %}
  26. <tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">
  27. {% for column in row %}
  28. <td>{{ column|escape }}</td>
  29. {% endfor %}
  30. </tr>
  31. {% endfor %}
  32. </tbody>
  33. </table>
  34. </div>
  35. </div>