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.

cache.twig 991B

123456789101112131415161718192021222324
  1. {% for key, value in list %}
  2. {% if loop.first %}
  3. <table class="layout" width="100%">
  4. <tr>
  5. <td align="left"><strong><a href="#" id="debug-view-cache" class="brackets">View</a>
  6. {{ list|length|number_format }} Cache key{% if list|length > 1 %}s{% endif %}
  7. ({{ time|number_format(5) }} ms):</strong></td>
  8. </tr>
  9. </table>
  10. <table id="debug_cache" class="debug_table hidden">
  11. {% endif %}
  12. <tr>
  13. <td class="label nobr debug_info debug_cache_key">
  14. <a href="#" onclick="$('#debug_cache_{{ key }}').gtoggle(); return false;">{{ key }}</a>
  15. <a href="tools.php?action=clear_cache&amp;key={{ key }}&amp;type=clear" target="_blank" class="brackets tooltip" title="Flush this cache key">Flush</a>
  16. </td>
  17. <td align="left" class="debug_data debug_cache_data">
  18. <pre id="debug_cache_{{ key }}" class="hidden">{{ value }}</pre>
  19. </td>
  20. </tr>
  21. {% if loop.last %}
  22. </table>
  23. {% endif %}
  24. {% endfor %}