misc: remove display of number of different versions in modules index page

(too heavy to compute as it is)
This commit is contained in:
Frédéric Péters 2019-01-25 20:35:28 +01:00
parent 6b9681e986
commit 545dc3dfc6
1 changed files with 1 additions and 2 deletions

View File

@ -10,8 +10,7 @@
{% for module in modules %}
{% with versions=module.get_all_installed_versions %}
{% if versions %}
<li>{{ module.name }} : <a href="{{ module.name }}/">deployments</a>
({{versions|length}} versions)</li>
<li>{{ module.name }} : <a href="{{ module.name }}/">deployments</a></li>
{% endif %}
{% endwith %}
{% endfor %}