1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-01-02 13:04:50 +00:00
bazarr/libs/flask_debugtoolbar/templates/panels/versions.html
Moravčík, Marian 443607a33d More work
2019-12-16 14:58:10 +01:00

33 lines
716 B
HTML

<h4>Installed Packages</h4>
<p>
Installation paths relative to:
</p>
<pre>
{{ python_lib }}
</pre>
<table>
<thead>
<tr>
<th>Package</th>
<th>Version</th>
<th>Installed Path</th>
</tr>
</thead>
<tbody>
{% for package in packages %}
<tr class="{{ loop.cycle('flDebugOdd', 'flDebugEven') }}">
<td>{{ package.project_name }}</td>
<td>{{ package.version }}</td>
<td>{{ relpath(package.location, python_lib) }}</td>
</tr>
{% else %}
<tr>
<td>setuptools</td>
<td>NOT INSTALLED</td>
<td>Install setuptools to display installed packages and version information</td>
</tr>
{% endfor %}
</tbody>
</table>