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.

error.twig 713B

12345678910111213141516171819202122232425
  1. {% for error in list %}
  2. {% if loop.first %}
  3. <table class="layout" width="100%">
  4. <tr>
  5. <td align="left"><strong><a href="#" id="debug-view-error" class="brackets">View</a>
  6. {{ list|length|number_format }} Errors:</strong></td>
  7. </tr>
  8. </table>
  9. <table id="debug_error" class="debug_table hidden">
  10. {% endif %}
  11. <tr valign="top">
  12. <td align="left" class="debug_info debug_error_call">
  13. {{ error.2 }}({{ error.3 }})
  14. </td>
  15. <td class="debug_data debug_error_data" align="left">
  16. {{ error.0 }}
  17. </td>
  18. <td align="left">
  19. {{ error.1 }}
  20. </td>
  21. </tr>
  22. {% if loop.last %}
  23. </table>
  24. {% endif %}
  25. {% endfor %}