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.

class.twig 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <table class="layout" width="100%">
  2. <tr>
  3. <td align="left"><strong><a href="#" id="debug-view-class" class="brackets">View</a>
  4. Classes:</strong></td>
  5. </tr>
  6. </table>
  7. <table id="debug_class" class="debug_table hidden">
  8. <tr>
  9. <th>Class</th>
  10. <th>Methods</th>
  11. <th>Variables</th>
  12. </tr>
  13. {% for name, class in list %}
  14. <tr>
  15. <td style="vertical-align: top">{{ name }}</td>
  16. <td style="vertical-align: top">
  17. {% for name in class.methods %}
  18. {% if loop.first %}
  19. <ul class="stats nobullet">
  20. {% endif %}
  21. <li>{{ name }}</li>
  22. {% if loop.last %}
  23. </ul>
  24. {% endif %}
  25. {% endfor %}
  26. </td>
  27. <td style="vertical-align: top">
  28. {% for name in class.vars %}
  29. {% if loop.first %}
  30. <ul class="stats nobullet">
  31. {% endif %}
  32. <li>{{ dump(name) }}</li>
  33. {% if loop.last %}
  34. </ul>
  35. {% endif %}
  36. {% endfor %}
  37. </td>
  38. </tr>
  39. {% endfor %}
  40. </table>