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.

flag.twig 1.1KB

123456789101112131415161718192021222324252627282930
  1. {% for row in list %}
  2. {% if loop.first %}
  3. <table class="layout" width="100%">
  4. <tr>
  5. <td align="left"><strong><a href="#" id="debug-view-flag" class="brackets">View</a>
  6. Flags:</strong></td>
  7. </tr>
  8. </table>
  9. <table id="debug_flag" class="debug_table hidden">
  10. <tr valign="top">
  11. <td class="debug_flags_event"><strong>Event</strong></td>
  12. <td style="text-align: right" class="debug_flags_time"><strong>Page time</strong></td>
  13. {% if row.3 is not empty %}
  14. <td style="text-align: right" class="debug_flags_time"><strong>CPU time</strong></td>
  15. {% endif %}
  16. <td style="text-align: right" class="debug_flags_memory"><strong>Memory</strong></td>
  17. </tr>
  18. {% endif %}
  19. <tr valign="top">
  20. <td>{{ row.0 }}</td>
  21. <td style="text-align: right">{{ row.1|number_format(3) }} ms</td>
  22. {% if row.3 is not empty %}
  23. <td style="text-align: right">{{ (row.3 / 1000)|number_format(3) }} ms</td>
  24. {% endif %}
  25. <td style="text-align: right">{{ row.2|octet_size }}</td>
  26. </tr>
  27. {% if loop.last %}
  28. </table>
  29. {% endif %}
  30. {% endfor %}