BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ocelot.twig 1015B

123456789101112131415161718192021222324252627
  1. {% for n, request in list %}
  2. {% if loop.first %}
  3. {% set nr = list|length %}
  4. <table class="layout" width="100%">
  5. <tr>
  6. <td align="left"><strong><a href="#" id="debug-view-ocelot" class="brackets">View</a>
  7. {{ nr|number_format }} Ocelot request{% if nr > 1 %}s{% endif %}s:</strong></td>
  8. </tr>
  9. </table>
  10. <table id="debug_ocelot" class="debug_table hidden">
  11. {% endif %}
  12. <tr>
  13. <td align="left" class="debug_data debug_ocelot_data">
  14. <a href="#" onclick="$('#debug_ocelot_{{ n }}').gtoggle(); return false">{{ request.path }}</a>
  15. <pre id="debug_ocelot_{{ n }}" class="hidden">{{ request.response }}</pre>
  16. </td>
  17. <td align="left" class="debug_info" style="width: 100px;">
  18. {{ request.status }}
  19. </td>
  20. <td align="left" class="debug_info debug_timing" style="width: 100px;">
  21. {{ request.time|number_format(5) }} ms
  22. </td>
  23. </tr>
  24. {% if loop.last %}
  25. </table>
  26. {% endif %}
  27. {% endfor %}