list frozen modules in the board download page

This commit is contained in:
Neradoc 2022-05-04 08:52:35 +02:00
parent 7957a441f0
commit ee5fd9fb15

View file

@ -119,6 +119,12 @@
<span class="download-modules {% if version.stable %}stable{% else %}unstable{% endif %}">{{ version.modules | join: ', ' }}</span>
</p>
{% endif %}
{% if version.frozen_libraries and version.frozen_libraries.size != 0 %}
<p>
Included frozen<sup><a href="https://docs.circuitpython.org/en/latest/docs/reference/glossary.html?highlight=frozen#term-frozen-module" title="What is a frozen module">(?)</a></sup> modules:
<span class="download-modules {% if version.stable %}stable{% else %}unstable{% endif %}">{{ version.frozen_libraries | join: ', ' }}</span>
</p>
{% endif %}
</div>
{% endfor %}
{% endif %}