mirror of
https://github.com/pallets-eco/flask-debugtoolbar.git
synced 2026-04-30 21:39:15 -05:00
30 lines
590 B
HTML
30 lines
590 B
HTML
<h4>Installed Packages</h4>
|
|
|
|
<p>
|
|
Current Site Packages Directory:
|
|
</p>
|
|
<pre>
|
|
{{ python_lib_dir }}
|
|
</pre>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Package</th>
|
|
<th>Version</th>
|
|
<th>Homepage</th>
|
|
<th>Summary</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for package in packages %}
|
|
<tr class="{{ loop.cycle('flDebugOdd', 'flDebugEven') }}">
|
|
<td>{{ package.get('Name') }}</td>
|
|
<td>{{ package.get('Version') }}</td>
|
|
<td>{{ package.get('Home-page') }}</td>
|
|
<td>{{ package.get('Summary') }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|