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.

sphinxql.twig 727B

1234567891011121314151617181920
  1. {% for query 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-sphinxql" class="brackets">View</a>
  7. {{ nr }} Sphinx search{% if n > 1 %}s{% endif %}
  8. ({{ time|number_format(5) }} ms):</strong></td>
  9. </tr>
  10. </table>
  11. <table id="debug_sphinxql" class="debug_table hidden">
  12. {% endif %}
  13. <tr valign="top">
  14. <td class="debug_data debug_sphinx_data"><pre>{{ query.0 }}</pre></td>
  15. <td class="rowa debug_info debug_sphinx_time" style="width: 130px;" align="left">{{ query.1|number_format(5) }} ms</td>
  16. </tr>
  17. {% if loop.last %}
  18. </table>
  19. {% endif %}
  20. {% endfor %}