12345678910111213141516171819202122232425262728293031323334353637383940 |
- <table class="layout" width="100%">
- <tr>
- <td align="left"><strong><a href="#" id="debug-view-class" class="brackets">View</a>
- Classes:</strong></td>
- </tr>
- </table>
- <table id="debug_class" class="debug_table hidden">
- <tr>
- <th>Class</th>
- <th>Methods</th>
- <th>Variables</th>
- </tr>
- {% for name, class in list %}
- <tr>
- <td style="vertical-align: top">{{ name }}</td>
- <td style="vertical-align: top">
- {% for name in class.methods %}
- {% if loop.first %}
- <ul class="stats nobullet">
- {% endif %}
- <li>{{ name }}</li>
- {% if loop.last %}
- </ul>
- {% endif %}
- {% endfor %}
- </td>
- <td style="vertical-align: top">
- {% for name in class.vars %}
- {% if loop.first %}
- <ul class="stats nobullet">
- {% endif %}
- <li>{{ dump(name) }}</li>
- {% if loop.last %}
- </ul>
- {% endif %}
- {% endfor %}
- </td>
- </tr>
- {% endfor %}
- </table>
|