mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-01-06 05:30:12 -06:00
- Rename the package to flask_debugtoolbar - Fix importing of the panels so that the views in the panels are correctly registered in the blueprint There is still one major problem in the sqlalchemy panel where we are not able to get the SQLAlchemy reference
23 lines
422 B
HTML
23 lines
422 B
HTML
{% if templates %}
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Filename</th>
|
|
<th>Context vars</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for template in templates %}
|
|
<tr class="{{ loop.cycle('fjDebugOdd' 'fjDebugEven') }}">
|
|
<td>{{ template.template.name }}</td>
|
|
<td>{{ template.context.keys()|join(', ') }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<p>No templates rendered.</p>
|
|
{% endif %}
|
|
|
|
|